Articles in this section
Category / Section

How to set the height of GridGroupingControl through clientside ?

1 min read

 

To set the height of GridGroupingControl through client side the following steps has to be followed:

  • Search for DIV tag and iterate through the collection of DIV tag to find the GridGroupControl using the ID.
  • Apply the appropriate styles(Height in this sceanrio) to the GridGroupingControl.

Please refer the below code snippet which illustrates this:

var prevHeight=0;

function ChangeHeight()

{

//Gets the element inside the DIV tag

var getElement=document.getElementsByTagName("div");

//iterate through the collection of DIV to find the GridGroupingcontrol

for(var i=0;i<=getelement.length;i++)

{

//checks if the currentelement is gridgroupingcontrol

if(getelement[i].id.indexof("gridgroupingcontrol1__div")!=-1)

{

//iterates through the table inside div tag

//apply the style for the appropriate gridgroupingcontrol

var getelement=getelement[i].getelementsbytagname("table");

for(var j=0;j<=getelement.length;j++)

{

//Apply the Height and fontweight for the GridGroupinControl

getelement[j].style.fontWeight='bold';

getelement[j].style.height='100px';

}

}

}

}

Sample:

http://help.syncfusion.com/support/samples/kb/Grid.Web/6.1.0.34/GGCHeight/Height.zip

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied