List of selected rows:




Demonstrates how to bind jqGrid to declarative SqlDataSource control. The only thing you need to do is to set the DataSourceID property of jqGrid to the ID of the respective SqlDataSource control. Note that there is not even a single line of code in the C# file (click on the C# tab) - everything is done declaratively.

Also, all major grid features like sorting (click on a column header), searching (click on the server icon on the bottom toolbar), paging, etc work as well by default -- no need to code anything.

Column settings can be customized using the collection. Columns are automatically created when you associate a declarative datasource with the grid at design time.

You can tweak various column properties, like HeaderText (in order to set column header text), DataFormatString (to control formatting of the cells), Width (set column with in pixels), etc.

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="default.aspx.cs" Inherits="GridTest.examples.loading_data.sqldatasource._default" %>
<%@ Register Assembly="Trirand.Web" TagPrefix="trirand" Namespace="Trirand.Web.UI.WebControls" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <title>jqGrid ASP.NET example with SqlDataSource</title>
    <!-- The jQuery UI theme that will be used by the grid -->
    <link rel="stylesheet" type="text/css" media="screen" href="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.16/themes/redmond/jquery-ui.css" />
    <!-- The jQuery UI theme extension jqGrid needs -->
    <link rel="stylesheet" type="text/css" media="screen" href="/themes/ui.jqgrid.css" />
    <!-- jQuery runtime minified -->
    <script src="http://ajax.microsoft.com/ajax/jquery/jquery-1.7.1.min.js" type="text/javascript"></script>
    <!-- The localization file we need, English in this case -->
    <script src="/js/trirand/i18n/grid.locale-en.js" type="text/javascript"></script>
    <!-- The jqGrid client-side javascript -->
    <script src="/js/trirand/jquery.jqGrid.min.js" type="text/javascript"></script>    
    <!-- This jQuery UI library is needed only for the code tabs, not needed by the grid per se -->
        
    <style type="text/css">    
        body, html { font-size: 80%; }    
    </style>
</head>


<body>
    <form id="form1" runat="server">
    
    <asp:SqlDataSource runat="server" ID="SqlDataSource1" 
        ConnectionString="<%$ ConnectionStrings:SQL2008_449777_fhsConnectionString %>"                 
        SelectCommand="SELECT [OrderID], [RequiredDate], [ShipName], [ShipCity], [Freight] FROM [Orders]">
    </asp:SqlDataSource>
      
    <div id="containerID" runat="server">
        <trirand:JQGrid 
            runat="server"
            ID="JQGrid1"
            MultiSelect="true"
            MultiSelectMode="SelectOnRowClick"
            DataSourceID="SqlDataSource1" 
            Width="600px" >
            <Columns>
                <trirand:JQGridColumn DataField="OrderID" HeaderText="Order ID" PrimaryKey="True" Width="50" />
                <trirand:JQGridColumn DataField="RequiredDate" DataFormatString="{0:d}"/>
                <trirand:JQGridColumn DataField="ShipName" Width="200" />
                <trirand:JQGridColumn DataField="ShipCity" />
                <trirand:JQGridColumn DataField="Freight" />
            </Columns>
            <ToolBarSettings ShowRefreshButton="true" ShowSearchButton="true" />                        
            <SortSettings InitialSortColumn=""></SortSettings>
            <ClientSideEvents RowSelect="rowSelected" LoadComplete="restoreSelectedRows" />
        </trirand:JQGrid>
        
        <asp:HiddenField runat="server" ID="SelectedRowsState" />
        
        <br /><br />
        <div style="font-family: Verdana; font-size: 125%"/>        
            <b>List of selected rows:</b>
            <span id="listOfSelectedRows" />
            <asp:Label runat="server" ID="ListOfSelectedRowsBeforePostBack"></asp:Label>
        </div>
        
        <br /><br />        
        <asp:Button runat="server" ID="Button1" onclick="Button1_Click" Text="Postback" />
        
        
        
        <script type="text/javascript">
        
        var selectedRows = [];
        var grid = $("#<%= JQGrid1.ClientID %>");
        
        function rowSelected(rowID, isSelected)
        {           
            selectedRows[rowID] = isSelected;            
            
            updateSelectedRowsHidden();
            printSelectedElements();
        }
        
        function restoreSelectedRows()
        {            
            for (var row in selectedRows)
            {
                if (selectedRows[row])
                    grid.setSelection(row);
            }
        }
        
        function updateSelectedRowsHidden()
        {
            var hiddenField = $("#<%= SelectedRowsState.ClientID %>");
            var selectedValues = "";
            
            for (var row in selectedRows)
            {
                if (selectedRows[row])                    
                    selectedValues = selectedValues + row + ",";
            }
            alert(selectedValues);
            hiddenField.val(selectedValues);
        }
        
        function printSelectedElements()
        {
            $("#listOfSelectedRows").html("");
            for (var row in selectedRows)
            {
                if (selectedRows[row])
                    $("#listOfSelectedRows").append(row + ",");
            }
        }
        
        </script>
    
    
    
    <br /><br />
        
    <trirand:codetabs runat="server" id="tabs"></trirand:codetabs>     
    
    </form>
</body>
</html>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using Trirand.Web.UI.WebControls;

namespace GridTest.examples.loading_data.sqldatasource
{
    public partial class _default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {            
        }

        protected void Button1_Click(object sender, EventArgs e)
        {
            ListOfSelectedRowsBeforePostBack.Text = 
                "Selected rows before postback: " +
                SelectedRowsState.Value;
        }
    }
}
Switch theme:


Theming is based on the very popular jQuery ThemeRoller standard. This is the same theming mechanism used by jQuery UI and is now a de-facto standard for jQuery based components. The benefits of using ThemeRoller are huge. We can offer a big set of ready to use themes created by professional designers, including Windows-like themes (Redmond), Apple-like theme (Cupertino), etc. In addition to that any jQuery UI controls on the same page will pick the same theme.

Last, but not least, you can always roll your own ThemeRoller theme, using the superb Theme Editor

To use a theme, simply reference 2 Css files in your Html <head> section - the ThemeRoller theme you wish to use, and the jqGrid own ThemeRoller Css file. For example (Redmond theme):

<link rel="stylesheet" type="text/css" media="screen" href="/themes/redmond/jquery-ui-1.8.2.custom.css" />
<link rel="stylesheet" type="text/css" media="screen" href="/themes/ui.jqgrid.css" />