       <telerik:RadGrid ID="rgServiceAuthorizationList" runat="server" PageSize="5" AllowSorting="True"
                    SortingSettings-EnableSkinSortStyles="true" AllowMultiRowSelection="True" AllowPaging="True"
                    ShowGroupPanel="False" AutoGenerateColumns="False" GridLines="none" OnNeedDataSource="rgServiceAuthorizationList_NeedDataSource"
                    OnInit="rgServiceAuthorizationList_OnInit" ClientSettings-EnablePostBackOnRowClick="False"
                    EnableViewState="True" PagerStyle-AlwaysVisible="True" AllowFilteringByColumn="true" 
                    OnItemCommand="RadGrid1_ItemCommand" OnItemCreated="RadGrid1_ItemCreated" OnSortCommand="rgServiceAuthorizationList_SortCommand" OnPreRender="rgServiceAuthorizationList_PreRender"
                    EnableLinqExpressions="false">
                    <PagerStyle Mode="NextPrevNumericAndAdvanced" />
                    <MasterTableView Width="100%" GroupLoadMode="Client" AllowMultiColumnSorting="true"
                        AllowSorting="true" CommandItemDisplay="TopAndBottom" AllowNaturalSort="false"
                        NoMasterRecordsText="No Records Found">
                        <CommandItemTemplate>
                            <asp:LinkButton runat="server" ID="LinkButton1" Text="Clear Filters" CommandName="ClearFilters"
                                OnClientClick="javascript:fireButtonEvent(this, 'ResetGridPage');" Visible='<%# rgServiceAuthorizationList.EditIndexes.Count == 0 %>' />
                        </CommandItemTemplate>
                        <NoRecordsTemplate>
                            <div style="color: Red">
                                No Records Found</div>
                        </NoRecordsTemplate>
                        <Columns>
                            <telerik:GridBoundColumn DataField="RequesterParentProvider" HeaderText="Requester Parent Provider"
                                HeaderButtonType="TextButton" ItemStyle-Width="10%" HeaderStyle-Width="10%" ShowSortIcon="true"
                                SortExpression="RequesterParentProvider" AllowSorting="true" ShowFilterIcon="true">
                                <FilterTemplate>
                                    <telerik:RadComboBox ID="RequesterParentProvider" DataSource='<%# CurrentControllerData["ServiceAuthRequestMhsa"] !=null ? (CurrentControllerData["ServiceAuthRequestMhsa"] as List<DSHS.CMBHS.Model.ServiceAuthRequestMhsaView>).GroupBy(p => p.RequesterParentProvider).Select(g => g.First()).ToList() : null%>'
                                        DataTextField="RequesterParentProvider" DataValueField="RequesterParentProvider"
                                        Height="200px" AppendDataBoundItems="true" SelectedValue='<%# ((GridItem)Container).OwnerTableView.GetColumn("RequesterParentProvider").CurrentFilterValue %>'
                                        runat="server" OnSelectedIndexChanged="filterCombo_SelectedIndexChanged" OnPreRender="filterCombo_PreRender"
                                        OnClientSelectedIndexChanged="SelectedIndexChanged" ClientIDMode="Static" EnableViewState="true">
                                        <Items>
                                            <telerik:RadComboBoxItem Text="All" />
                                        </Items>
                                    </telerik:RadComboBox>
                                    <telerik:RadScriptBlock ID="RadScriptBlock1" runat="server">
                                        <script type="text/javascript">
                                            function SelectedIndexChanged(sender, args)
                                            {
                                                var tableView = $find("<%# ((GridItem)Container).OwnerTableView.ClientID %>");
                                                tableView.filter(sender._element.id, args.get_item().get_value(), "EqualTo");
                                            }
                                            function CellClick(client_nbr)
                                            {
                                                document.getElementById("UserContext_ClientNbr").value = client_nbr;
                                            }
                                        </script>
                                    </telerik:RadScriptBlock>
                                </FilterTemplate>
                            </telerik:GridBoundColumn>
                            <telerik:GridBoundColumn DataField="AuthorizationNbr" HeaderText="Authorization Number"
                                HeaderButtonType="TextButton" ItemStyle-Width="10%" HeaderStyle-Width="10%" ShowSortIcon="true"
                                SortExpression="AuthorizationNbr" AllowSorting="true" ShowFilterIcon="true">
                                <FilterTemplate>
                                    <telerik:RadComboBox ID="AuthorizationNbr" DataSource='<%# CurrentControllerData["ServiceAuthRequestMhsa"] !=null ? (CurrentControllerData["ServiceAuthRequestMhsa"] as List<DSHS.CMBHS.Model.ServiceAuthRequestMhsaView>).GroupBy(p => p.AuthorizationNbr).Select(g => g.First()).ToList() : null%>'
                                        DataTextField="AuthorizationNbr" DataValueField="AuthorizationNbr" Height="200px"
                                        AppendDataBoundItems="true" SelectedValue='<%# ((GridItem)Container).OwnerTableView.GetColumn("AuthorizationNbr").CurrentFilterValue %>'
                                        runat="server" OnSelectedIndexChanged="filterCombo_SelectedIndexChanged" OnPreRender="filterCombo_PreRender"
                                        OnClientSelectedIndexChanged="SelectedIndexChanged" ClientIDMode="Static" EnableViewState="true">
                                        <Items>
                                            <telerik:RadComboBoxItem Text="All" />
                                        </Items>
                                    </telerik:RadComboBox>
                                </FilterTemplate>
                            </telerik:GridBoundColumn>
                           
                           
                           <telerik:GridTemplateColumn UniqueName="CheckBoxTemplateColumn" AllowFiltering ="false" HeaderText="Select All" >
                                <HeaderTemplate>
                                    <asp:CheckBox ID="headerChkbox" OnCheckedChanged="ToggleSelectedState" AutoPostBack="True"
                                        runat="server" Text="Select All"></asp:CheckBox>
                                </HeaderTemplate>
                                <ItemTemplate>
                                    <asp:CheckBox ID="CheckBox1" OnCheckedChanged="ToggleRowSelection" AutoPostBack="True"
                                        runat="server"></asp:CheckBox>
                                </ItemTemplate>
                            </telerik:GridTemplateColumn>
                            <%--                             <telerik:GridTemplateColumn UniqueName="TemplateColumn" HeaderText="Link" ItemStyle-Width="5%" HeaderStyle-Width="5%"
                                DataField="Link" DataType="System.Int32" HeaderTooltip="Link" AllowFiltering="false">
                                <ItemTemplate>
                                    <asp:HyperLink ID="Link" runat="server" Text="View" 
                                    NavigateUrl='<%# CurrentControllerData["ServiceAuthRequestMhsa"] !=null ? Eval("LinkUrl").ToString() : string.Empty %>'></asp:HyperLink>                          
                                </ItemTemplate>
                            </telerik:GridTemplateColumn>  --%>
                        </Columns>
                        <PagerStyle Mode="NextPrevAndNumeric" />
                    </MasterTableView>
                    <ClientSettings ReorderColumnsOnClient="True" AllowDragToGroup="False" AllowColumnsReorder="True"
                        EnablePostBackOnRowClick="false">
                        <Selecting AllowRowSelect="True"></Selecting>
                        <Resizing AllowRowResize="False" AllowColumnResize="False" EnableRealTimeResize="True"
                            ResizeGridOnColumnResize="False"></Resizing>
                        <ClientEvents OnCommand="RadGrid1_Command" />
                    </ClientSettings>
                    <GroupingSettings ShowUnGroupButton="false" />
                </telerik:RadGrid>