hi,
i am using your telerik datagrid, every thing works fine but i need to pass the filter values to the sql datasource (or a simple objectdatasource).
Can you help me?
thanks!
<
asp:SqlDataSource
ID
=
"SqlDataSource1"
ConnectionString
=
"***"
ProviderName
=
"System.Data.OracleClient"
SelectCommand
=
"select * from MAINITEMS"
runat
=
"server"
>
</
asp:SqlDataSource
>
<
telerik:RadGrid
runat
=
"server"
ID
=
"RadGrid1"
Width
=
"99%"
Height
=
"600px"
DataSourceID
=
"SqlDataSource1"
AllowFilteringByColumn
=
"True"
AllowSorting
=
"True"
ShowFooter
=
"False"
ShowHeader
=
"True"
OnPreRender
=
"RadGrid1_OnPreRender"
AllowAutomaticDeletes
=
"False"
AllowAutomaticUpdates
=
"False"
AllowAutomaticInserts
=
"False"
AutoGenerateColumns
=
"True"
AllowPaging
=
"True"
PageSize
=
"30"
ShowGroupPanel
=
"True"
>
<
GroupingSettings
CaseSensitive
=
"false"
ShowUnGroupButton
=
"true"
></
GroupingSettings
>
<%--configurazione per spostare le colonne--%>
<
ClientSettings
AllowColumnsReorder
=
"true"
ReorderColumnsOnClient
=
"true"
AllowKeyboardNavigation
=
"true"
AllowDragToGroup
=
"True"
>
<
Scrolling
AllowScroll
=
"True"
UseStaticHeaders
=
"True"
SaveScrollPosition
=
"true"
></
Scrolling
>
</
ClientSettings
>
<
MasterTableView
CommandItemDisplay
=
"None"
DataKeyNames
=
"ID"
AllowFilteringByColumn
=
"True"
>
</
MasterTableView
>
</
telerik:RadGrid
>