Hello,
I have already use RadGrid in the past and I don't remember that I had such complications, but right in my application, I have checked 'Enable Sorting', 'Enable Filtering', 'Enable Sorting'
and non of these functionnalities appears.
alse, I wanted to remove the "
My Grid's code:
I have already use RadGrid in the past and I don't remember that I had such complications, but right in my application, I have checked 'Enable Sorting', 'Enable Filtering', 'Enable Sorting'
and non of these functionnalities appears.
alse, I wanted to remove the "
<
CommandItemSettings
ExportToPdfText
=
"Export to PDF"
/>
" line as it doesn't make any sense here, but the line has reappeared I don't know why.My Grid's code:
<
telerik:RadGrid
ID
=
"OrderDetail_RadGrid"
runat
=
"server"
AllowFilteringByColumn
=
"True"
AllowSorting
=
"True"
CellSpacing
=
"0"
GridLines
=
"None"
AutoGenerateColumns
=
"False"
DataSourceID
=
"TemporaryOnlineOrdersLines_SqlDataSource"
>
<
ClientSettings
AllowColumnsReorder
=
"True"
>
<
Scrolling
AllowScroll
=
"True"
UseStaticHeaders
=
"True"
/>
</
ClientSettings
>
<
MasterTableView
AllowFilteringByColumn
=
"False"
AllowSorting
=
"False"
DataSourceID
=
"TemporaryOnlineOrdersLines_SqlDataSource"
>
<
CommandItemSettings
ExportToPdfText
=
"Export to PDF"
/>
<
RowIndicatorColumn
Visible
=
"True"
FilterControlAltText
=
"Filter RowIndicator column"
>
<
HeaderStyle
Width
=
"20px"
/>
</
RowIndicatorColumn
>
<
ExpandCollapseColumn
Visible
=
"True"
FilterControlAltText
=
"Filter ExpandColumn column"
>
<
HeaderStyle
Width
=
"20px"
/>
</
ExpandCollapseColumn
>
<
Columns
>
<
telerik:GridBoundColumn
DataField
=
"p_Name"
FilterControlAltText
=
"Product"
UniqueName
=
"Product"
HeaderText
=
"Product"
/>
<%--<
telerik:GridBoundColumn
DataField
=
"p_Description"
FilterControlAltText
=
"Description"
UniqueName
=
"p_Description"
HeaderText
=
"Description"
/>--%>
<
telerik:GridNumericColumn
DataField
=
"tool_Quantity"
DecimalDigits
=
"2"
FilterControlAltText
=
"Quanity"
HeaderText
=
"Qantity"
/>
<
telerik:GridBoundColumn
DataField
=
"unit_Name"
FilterControlAltText
=
"Unit"
UniqueName
=
"unit_Name"
HeaderText
=
"Unit"
/>
<
telerik:GridButtonColumn
FilterControlAltText
=
"Filter column column"
UniqueName
=
"Remove"
/>
</
Columns
>
<
EditFormSettings
>
<
EditColumn
FilterControlAltText
=
"Filter EditCommandColumn column"
></
EditColumn
>
</
EditFormSettings
>
</
MasterTableView
>
<
FilterMenu
EnableImageSprites
=
"false"
></
FilterMenu
>
</
telerik:RadGrid
>