hi , i have created a colspan of 3 , i want to hide left and right border of the second cell ,i’m able to access the first and operate on that however i can access the last cell but cant give the css “border-left:none” while “border-right” works fine … if i can operate on the second cell which has no class , how would i be able to do ?
Well, actually, you can modify cell CSS with the help of a cssFormat method (described here):
{ id:"year", header:"Released" , width:80,
cssFormat:function(value, obj, row, col){
if(row==2)
return "borderless";
}},
http://webix.com/snippet/8f37ab0d
You can also study the sample on datatable styling http://localhost/webix/samples/15_datatable/21_styling/03_cell_styling.html
Btw, Webix features built-in span support in its Pro version: http://docs.webix.com/datatable__rowspans_colspans.html
its works fine with the table body but how can i do it with the headers … in the same snippet if i want to remove the border before and after “film title” what should i do ?