or
| var ctl1= $find('<%= lstTestcategory2.Clientid %>'); |
| var ctl= $find('<%= lstTestcategory.Clientid %>'); |
| for(var i = 0; i<= ctl.get_items().get_count()-1; i++) |
| { |
| var item1 = ctl.get_items().getItem(i); |
| alert(item1.get_text()); |
| alert(item1.get_selected()); |
| check = 1; |
| for(var i = 0; i<= ctl1.get_items().get_count()-1; i++) |
| { |
| // alert('in'); |
| var item = ctl1.get_items().getItem(i); |
| if(item.get_text() == e.get_item().get_text()) |
| { |
| // alert('in1'); |
| item.set_selected(true); |
| check = 1; |
| } |
| else |
| { |
| item.set_selected(false); |
| } |
| } |
Hi
How to increase the gridview header's height when using ColumnGroups.
When i am not using the Group header then by following code i am able to increase the size of header by
following code.
(this.radGridView1.GridElement as GridTableElement).TableHeaderHeight = 35;
but when i am using the group header ,above code is not working or does not have any affect on the header height.
Thanks
Ajay yadav
I face with the attached Exception ,when i execute my application .
How do i remove this Exception?
please help me,Thanks.