This is a migrated thread and some comments may be shown as answers.

[Solved] hideGroupPanel

1 Answer 90 Views
Grid
This is a migrated thread and some comments may be shown as answers.
-J-
Top achievements
Rank 1
-J- asked on 01 Jun 2009, 12:03 PM
Is there possibility to hide Group Panel?

<script type="text/javascript">
function GridCreated()
{
     $find('<%=RadGrid1.ClientID %>').get_masterTableView().hideGroupPanel();
}
</script>

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 01 Jun 2009, 12:32 PM
Hello,

You can try out the following javascript code to hide the GroupPanel:
js:
function GridCreated(sender,eventArgs)         
            {      
               sender._groupPanel.set_visible(false); 
            } 

Thanks
Princy.
Tags
Grid
Asked by
-J-
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or