<telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="RadTextBox1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RadTextBox2" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="RadTextBox2">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RadTextBox3" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManagerProxy>
<telerik:RadTextBox ID="RadTextBox1" AutoPostBack="true" runat="server">
</telerik:RadTextBox>
<telerik:RadTextBox ID="RadTextBox2" AutoPostBack="true" runat="server">
</telerik:RadTextBox>
<telerik:RadTextBox ID="RadTextBox3" AutoPostBack="true" runat="server">
</telerik:RadTextBox>
<
telerik:RadEditor ID="txtText" runat="server" Height="200px" Width="400px" ToolTip="Post Body" EnableEmbeddedSkins="false">
<Tools>
<telerik:EditorToolGroup>
<telerik:EditorTool Name="Bold" />
<telerik:EditorTool Name="Italic" />
<telerik:EditorTool Name="Underline" />
<telerik:EditorTool Name="Cut" />
<telerik:EditorTool Name="Copy" />
<telerik:EditorTool Name="Paste" />
<telerik:EditorTool Name="FontName" />
<telerik:EditorTool Name="FontSize" />
<telerik:EditorTool Name="ForeColor" />
</telerik:EditorToolGroup>
</Tools>
<Content>
</Content>
</telerik:RadEditor>
AdvancedInsertTemplate
doesn't work. save cancel options display and it open after i click options button. I want to open directly this form. How i configure the scheduler components. Thanks you for your helps.
<
asp:TextBox
ID
=
"txtTest"
runat
=
"server"
/>
<
telerik:RadInputManager
ID
=
"RadInputManager1"
runat
=
"server"
EnableEmbeddedSkins
=
"true"
Skin
=
"Default"
>
<
telerik:TextBoxSetting
BehaviorID
=
"bhTest"
ErrorMessage
=
"Error!"
Validation-IsRequired
=
"true"
Validation-ValidationGroup
=
"ValidationSummary1"
>
<
TargetControls
>
<
telerik:TargetInput
ControlID
=
"txtTest"
/>
</
TargetControls
>
</
telerik:TextBoxSetting
>
</
telerik:RadInputManager
>
<
asp:Button
ID
=
"btnTest"
runat
=
"server"
ValidationGroup
=
"ValidationSummary1"
Text
=
"Test"
/>
<
add
path
=
"Telerik.Web.UI.SpellCheckHandler.axd"
type
=
"Telerik.Web.UI.SpellCheckHandler"
verb
=
"*"
validate
=
"false"
/>
<
telerik:RadEditor
ID
=
"editorAnswer"
Runat
=
"server"
Font-Names
=
"Arial"
Font-Size
=
"12pt"
>
<
SpellCheckSettings
DictionaryPath
=
"~/App_Data/RadSpell/"
/>
Hi.!
I have a Rad Grid control in my ASPX page, then I bind this control (server side binding) to a data table that I get from a web service. I want to implement a client side filtering, but I don’t know how to do this or what things I need to change in order to do that. I think this is possible, because all the information I got, is now in client side (My table with all the rows.!! )
I successfully implement server side filtering but this is very slow, so sadly this is not an option for me. :(
Here’s a sample of my code (server side filtering):
ASPX:
<
telerik:RadGrid
ID
=
"gdOrders"
AllowFilteringByColumn
=
"True"
runat
=
"server"
OnItemCommand
=
"onItemCmd"
>
<
MasterTableView
AllowFilteringByColumn
=
"True"
>
<
Columns
>
<
telerik:GridBoundColumn
DataField
=
"CSOL_FOLIOOTID"
ShowFilterIcon
=
"false"
HeaderText
=
"Folio"
UniqueName
=
"CSOL_FOLIOOTID"
Resizable
=
"False"
AutoPostBackOnFilter
=
"true"
CurrentFilterFunction
=
"Contains"
AllowFiltering
=
"true"
/>
.
.
.
</
Columns
>
</
MasterTableView
>
</
telerik:RadGrid
>
CODE BEHIND
myDataTable = myObjInstance.GetOrders();
gdOrders.DataSource = myDataTable;
gdOrders.DataBind();
protected
void
onItemCmd(
object
source, Telerik.Web.UI.GridCommandEventArgs e)
{
switch
(e.CommandName)
{
case
RadGrid.FilterCommandName:
Pair filterPair = (Pair)e.CommandArgument;
TextBox filterBox = (e.Item
as
GridFilteringItem) [filterPair.Second.ToString()].Controls[0]
as
TextBox;
this
.ApplyFilter((
string
)filterPair.Second, filterBox.Text);
break
;
}
}
}
private
void
ApplyFilter(
string
clmnName,
string
value)
{
string
query = clmnName +
" like '%"
+ value.Trim() +
"%'"
;
gdOrders.DataSource = myDataTable.Select(query);
gdOrders.DataBind();
}
Can any one suggest me how to do this, what should I change or implement?
Tnks :D
Sorry for my English!!