Column Control Customization
Hi
I need to customize the default Column Control Component. say some thing like i need to change the div naming structure or add a new div b/w c0 and c1 div's
Ex
default component generates div in the following way
<div class="mainDiv">
<div class="mainDiv-c0">
</div>
<div class="mainDiv-c1">
</div>
</div>
suppose i need to customize the column control and make it generate a new div b/w c0 and c1, then how can it be achieved.
ex
<div class="mainDiv">
<div class="mainDiv-c0">
</div>
<div class="separatorBorder"></div>
<div class="mainDiv-c1">
</div>
</div>