Add Custom HTML to the Group Headers

Hi,

Is there any way to add custom HTML in the group headers? (I want to add a button in the header of each section). What is the easiest way to do this?

Thanks!

You may try to use customGroupFormat method.

For example:

mygrid.customGroupFormat=function(name,count){ return name+' :: found ' +count+ ' records '+'<input type="button" onclick="act()" value="push">'; }