Hi all,
I have two questions using a subgrid:
1. Is it possible to hide the header line in a subgrid?
2. What to do to use colspan in a subgrid? All my effort does not bring the correct view. I tried to use a xml-line like "…
Thanks for all
Klaus
- Is it possible to hide the header line in a subgrid?
You can use onSubGridCreated event as
mygrid.attachEvent(“onSubGridCreated”,function(sub){
sub.setNoHeader(true);
return true;
});
>>2. What to do to use colspan in a subgrid?
Same as above, onSubGridCreated event can be used with enableColSpan command, after that subgrid will correctly react on colspan attributes in XML