Hi
I have inherited a site with a lot of Telerik components, and I'm having trouble with adding a PageSizeComboBox to a RadGrid.
For some reason the ComboBox doesn't show. How can I get it to show itself?
I have inherited a site with a lot of Telerik components, and I'm having trouble with adding a PageSizeComboBox to a RadGrid.
For some reason the ComboBox doesn't show. How can I get it to show itself?
<
telerik:RadGrid
ID
=
"ListView_RadGrid"
runat
=
"server"
OnPreRender
=
"ListView_RadGrid_OnPreRender"
EnableViewState
=
"True"
GridLines
=
"None"
TabIndex
=
"5"
AllowPaging
=
"True"
AllowSorting
=
"True"
OnSortCommand
=
"ListView_RadGrid_SortCommand"
OnDataBound
=
"ListView_RadGrid_DataBound"
OnDataBinding
=
"ListView_RadGrid_DataBinding"
OnPageIndexChanged
=
"ListView_RadGrid_PageIndexChanged"
OnNeedDataSource
=
"ListView_RadGrid_OnNeedDataSource"
OnRowDrop
=
"ListView_RadGrid_OnRowDrop"
AllowMultiRowSelection
=
"True"
ShowDesignTimeSmartTagMessage
=
"True"
AllowCustomPaging
=
"True"
OnPageSizeChanged
=
"ListView_RadGrid_PageSizeChanged"
>
<
PagerStyle
Mode
=
"NextPrevNumericAndAdvanced"
Position
=
"TopAndBottom"
ShowPagerText
=
"True"
AlwaysVisible
=
"True"
/>
<
MasterTableView
ShowHeader
=
"true"
AllowMultiColumnSorting
=
"false"
AutoGenerateColumns
=
"False"
EnableViewState
=
"False"
ClientDataKeyNames
=
"ObjectId,Status"
DataKeyNames
=
"ObjectId"
>
<
CommandItemSettings
ExportToPdfText
=
"Export to Pdf"
/>
</
MasterTableView
>
</
telerik:RadGrid
>