or
<
telerik:RadSplitter
ID
=
"RadSplitter1"
runat
=
"server"
Width
=
"100%"
Height
=
"300"
>
<
telerik:RadPane
ID
=
"LeftPane"
runat
=
"server"
Width
=
"100"
>
Left pane</
telerik:RadPane
>
<
telerik:RadSplitBar
ID
=
"RadSplitBar1"
runat
=
"server"
CollapseMode
=
"Forward"
Width
=
"20px"
Height
=
"50px"
>
</
telerik:RadSplitBar
>
<
telerik:RadPane
ID
=
"MiddlePane1"
runat
=
"server"
Width
=
"200"
>
<
telerik:RadPivotGrid
ID
=
"pivot"
runat
=
"server"
>
</
telerik:RadPivotGrid
>
</
telerik:RadPane
>
</
telerik:RadSplitter
>
Currently, I have a RadGrid with dropdown list filtering on each column added to the grid programmatically.
Public Class GridDropdownFilterColumn : Inherits GridBoundColumn
....
Dim
_column As New Core.RadGrid.GridDropdownFilterColumn
...
InboxGrid.MasterTableView.Columns.Add(_column)
...
How can I change the dropdown list in one or more of my columns to contain checkboxes and have the grid filtered on the selected values?
I got the idea from the following example:
http://demos.telerik.com/aspnet-ajax/combobox/examples/functionality/templates/defaultcs.aspx
<telerik:RadAsyncUpload ID=
"ruFiles"
runat=
"server"
Skin=
""
ControlObjectsVisibility=
"None"
DisablePlugins=
"true"
OnClientFileUploaded=
"doFileUpload"
OnClientFileSelected=
"showLoading"
OnFileUploaded=
"rauFiles_FileUploaded"
EnableFileInputSkinning=
"false"
MaxFileSize=
"214748364"
OnClientValidationFailed=
"OnClientValidationFailed"
OnClientProgressUpdating=
"onClientFileUploading"
>
<Localization Select=
""
/>
</telerik:RadAsyncUpload>
<requestFiltering>
<!-- the posted content
for
normal pages should be less than 1 MB.
File uploads are handled by the location attribute. -->
<requestLimits maxAllowedContentLength=
"10485760"
/>
</requestFiltering>
<httpRuntime maxRequestLength=
"1073741824"
requestValidationMode=
"2.0"
/>