Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.39 KB | None | 0 0
  1. <telerik:RadGrid ID="gvStatus" runat="server" Skin="Bootstrap" CssClass="GridDesign" AllowPaging="True" OnNeedDataSource="GvStatus_OnNeedDataSource"
  2. AllowAutomaticUpdates="True" AllowAutomaticDeletes="True" AllowAutomaticInserts="True" AllowFilteringByColumn="True"
  3. AllowSorting="True" AutoGenerateColumns="False" ShowGroupPanel="True"
  4. EnableHeaderContextFilterMenu="True" EnableHeaderContextMenu="True" AutoGenerateHierarchy="True" EnableGroupsExpandAll="True" MasterTableView-AllowCustomSorting="True">
  5. <PagerStyle Mode="NextPrevAndNumeric" />
  6. <GroupingSettings CaseSensitive="False" ShowUnGroupButton="True" RetainGroupFootersVisibility="True" />
  7. <ExportSettings FileName="Roles" IgnorePaging="True" OpenInNewWindow="True">
  8. <Csv ColumnDelimiter="Semicolon" />
  9. </ExportSettings>
  10. <ClientSettings AllowColumnsReorder="True" AllowDragToGroup="True" ReorderColumnsOnClient="True">
  11. <Selecting AllowRowSelect="True" />
  12. <Scrolling AllowScroll="False" UseStaticHeaders="False" />
  13. <ClientEvents></ClientEvents>
  14. </ClientSettings>
  15. <MasterTableView DataKeyNames="Product" ClientDataKeyNames="Product" CommandItemDisplay="Top" PageSize="10"
  16. Width="100%" BackColor="white" HierarchyDefaultExpanded="False" EnableGroupsExpandAll="True" HierarchyLoadMode="ServerBind" GroupsDefaultExpanded="False">
  17. <GroupByExpressions>
  18. <telerik:GridGroupByExpression>
  19. <GroupByFields>
  20. <telerik:GridGroupByField FieldName="Product" />
  21. </GroupByFields>
  22. <SelectFields>
  23. <telerik:GridGroupByField FieldName="Product" />
  24. </SelectFields>
  25. </telerik:GridGroupByExpression>
  26. </GroupByExpressions>
  27. <CommandItemSettings ShowExportToWordButton="true" ShowExportToExcelButton="true"
  28. ShowExportToCsvButton="true" ShowExportToPdfButton="true"></CommandItemSettings>
  29. <RowIndicatorColumn Visible="True" FilterControlAltText="Filter RowIndicator column">
  30. </RowIndicatorColumn>
  31. <ExpandCollapseColumn Visible="True" FilterControlAltText="Filter ExpandColumn column">
  32. </ExpandCollapseColumn>
  33. <Columns>
  34. <telerik:GridBoundColumn DataField="Product" HeaderText="Product" UniqueName="Product"
  35. SortExpression="Product" Groupable="True">
  36. <HeaderStyle ForeColor="#333333" HorizontalAlign="Center" />
  37. </telerik:GridBoundColumn>
  38. <telerik:GridBoundColumn DataField="Customer" HeaderText="Customer" UniqueName="Customer"
  39. SortExpression="Customer" Groupable="True">
  40. <HeaderStyle ForeColor="#333333" HorizontalAlign="Center" />
  41. </telerik:GridBoundColumn>
  42. <telerik:GridBoundColumn DataField="Agent" HeaderText="Agent" UniqueName="Agent"
  43. SortExpression="Agent" Groupable="True">
  44. <HeaderStyle ForeColor="#333333" HorizontalAlign="Center" />
  45. </telerik:GridBoundColumn>
  46. <telerik:GridBoundColumn DataType="System.DateTime" DataField="PlacementDate" HeaderText="PlacementDate" UniqueName="PlacementDate" DataFormatString="{0:dd/MM/yyyy}">
  47. <HeaderStyle HorizontalAlign="Center" ForeColor="#333333" Width="150px" />
  48. <ItemStyle HorizontalAlign="Center" />
  49. </telerik:GridBoundColumn>
  50. <telerik:GridBoundColumn DataField="Status" HeaderText="Status" UniqueName="Status"
  51. SortExpression="Status" Groupable="True">
  52. <HeaderStyle ForeColor="#333333" HorizontalAlign="Center" />
  53. </telerik:GridBoundColumn>
  54. </Columns>
  55. </MasterTableView>
  56. <FilterMenu EnableImageSprites="False">
  57. </FilterMenu>
  58. </telerik:RadGrid>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement