<telerik:RadFilter
ID="rfCustomFilter" runat="server"FilterContainerID="RadGrid1"/>
and i have also tried to assign filterContainerID in code behind as such:
rfCustomFilter.FilterContainerID = "RadGrid1";
both did not work, and i get an error when Adding an expression:
Microsoft JScript runtime error: Sys.WebForms.PageRequestManagerServerErrorException: Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index
<table> <tr> <td>First Row, Cell 1</td> <td>First Row, Cell 2</td> </tr> <tr> <td colspan="2">Second Row, Cell 1</td> </tr> </table><telerik:GridDropDownColumn DataField="store" HeaderText="Store" UniqueName="store" DataSourceID="SqlDataSource2" ListTextField="store" ListValueField="store"></telerik:GridDropDownColumn>protected void RadGrid1_UpdateCommand(object source, Telerik.Web.UI.GridCommandEventArgs e) { string store = (editedItem["store"].Controls[0] as DropDownList).SelectedValue.ToString(); }<style type="text/css">div.RadGrid_Vista .rgRow td div, div.RadGrid_Vista .rgAltRow td div{ white-space : nowrap !important; overflow : hidden !important; text-overflow : ellipsis !important; }</style>
<telerik:RibbonBarTab Text="Home">
<telerik:RibbonBarGroup Text="Clipboard" EnableLauncher="true">
<Items>
<telerik:RibbonBarMenu Size="Large" Text="Paste" ImageUrl="icons/home/Paste.png">
<Items>
<telerik:RibbonBarMenuItem Text="Paste" ImageUrl="icons/home/Paste.png" />
<telerik:RibbonBarMenuItem Text="Paste Special..." ImageUrl="icons/home/Paste.png" />
</Items>
</telerik:RibbonBarMenu> <telerik:RibbonBarButton Size="Medium" Text="Cut" ImageUrl="icons/home/Cut.png" /> <telerik:RibbonBarButton Size="Medium" Text="Copy" ImageUrl="icons/home/Copy.png" /><telerik:RibbonBarButton Size="Medium" Text="Format" ImageUrl="icons/home/Format_Painter.png" />
</Items>
</telerik:RibbonBarGroup>
1)Here is part of the code. I don't know where those images are located?
2) Is there any default image in this control? I just want to see if I can use this control and have a quick way to access those image.
<telerik:RadGrid ID="Grdaccountdraftavail" runat="server" AllowPaging="True" AllowMultiRowSelection="True" ShowFooter="true" Skin="Office2007"> <PagerStyle AlwaysVisible="true" /> <MasterTableView Caption="<table style='background-color:Silver; width:100%; color:Black;text-align:center;'><tr><td>Accountwise Draft Availability</td></tr></table>" DataKeyNames="Accountid"> <Columns> <telerik:GridClientSelectColumn UniqueName="Grdaccountdraftavail_select"> <HeaderStyle HorizontalAlign="Center" Width="20px" /> <ItemStyle HorizontalAlign="Center" Width="20px" /> </telerik:GridClientSelectColumn> </Columns> <ExpandCollapseColumn Visible="True"> </ExpandCollapseColumn> <DetailTables> <telerik:GridTableView Name="Providers" runat="server"> </telerik:GridTableView> </DetailTables> </MasterTableView> <ClientSettings EnableRowHoverStyle="true"> <Selecting AllowRowSelect="true" /> </ClientSettings> </telerik:RadGrid>