When I try to apply AutoPostBackOnFilter="true" inside GridCheckBoxColumn with Telerik Grid it not filter when I change filter value.
And also I notice that it always include checkbox filter value when I change other column’s filter value.
Ex.
ContactPerson City Country IsMainAddress?
Dharmesh Rajkot India True
Vishal Connecticut USA False
Vimal Baroda India True
(1) AutoPostBackOnFilter not works with GridCheckBoxColumn, here my last column IsMainAddress is GridCheckBoxColumn.
(2) When I try to filter ContactPerson with “Vi” and apply Contains filter it displays only “Vishal, Connecticut, USA, False”
because it added “IsMainAddress?” column’s default fitter value False that should not be.
It should be display “Vishal” and “Vimal” records, this work well other then CheckBoxColumn value. I hope this can be solving
using some differemt method.
| protected override IEnumerable<ScriptReference> GetScriptReferences() |
| { |
| IEnumerable<ScriptReference> baseSR = base.GetScriptReferences(); |
| List<ScriptReference> mySR = baseSR as List<ScriptReference>; |
| mySR.Add(new ScriptReference("MyClientScript.js")); |
| return mySR as IEnumerable<ScriptReference>; |
| } |
| protected override IEnumerable<ScriptDescriptor> GetScriptDescriptors() |
| { |
| IEnumerable<ScriptDescriptor> baseSD= base.GetScriptDescriptors(); |
| List<ScriptDescriptor> mySD= baseSD as List<ScriptDescriptor>; |
| .... |
| .... |
| mySD.Add(desc); |
| return mySD as IEnumerable<ScriptDescriptor>; |
| } |
I get the error: this.get_styles().EnabledStyle
best regards
lemon
| <rad:RadTreeView ID="rtvOrganisationStructure" runat="server" ExpandDelay="10" Skin="Office2007"<br> AllowNodeEditing="true" DragAndDrop="true" MultipleSelect="true" <br> CheckBoxes="true"<br> OnNodeEdit="rtvOrganisationStructure_OnNodeEdit"<br> OnNodeContextClick="rtvOrganisationStructure_OnNodeContextClick"<br> OnNodeDrop="rtvOrganisationStructure_OnNodeDrop"<br> <b>OnNodeCheck="rtvOrganisationStructure_OnNodeCheck"</b>><br> </rad:RadTreeView> |