<!DOCTYPE html> <html> <head> <title>Header styling</title> <link rel="stylesheet" href="../../../codebase/webix.css" type="text/css" charset="utf-8"> <script src="../../../codebase/webix.js" type="text/javascript" charset="utf-8"></script> <link rel="stylesheet" type="text/css" href="../common/samples.css"> <script src="../common/testdata.js" type="text/javascript" charset="utf-8"></script> </head> <body> <div class='header_comment'>Header styling </div> <div class='sample_comment'>Standard DataTable</div> <div id="testA"></div> <hr> <div class='sample_comment'>Styling by a css class</div> <div id="testB"></div> <hr> <div class='sample_comment'>Styling by a css object</div> <div id="testC"></div> <style> .highlight{ background-color:#FFAAAA; } </style> <script type="text/javascript" charset="utf-8"> webix.ready(function(){ grid = webix.ui({ container:"testA", view:"datatable", columns:[ { id:"rank", header:"", css:"rank", width:50}, { id:"title", header:"Film title",width:200}, { id:"year", header:"Released" , width:80}, { id:"votes", header:"Votes", width:100} ], data:small_film_set, autowidth:true, autoheight:true }); }) webix.ready(function(){ grid = webix.ui({ container:"testB", view:"datatable", columns:[ { id:"rank", header:"", css:"rank", width:50}, { id:"title", header:"Film title",width:200}, { id:"year", header:{ text:"Released", css:"highlight" } , width:80}, { id:"votes", header:"Votes", width:100} ], data:small_film_set, autowidth:true, autoheight:true }); }); webix.ready(function(){ grid = webix.ui({ container:"testC", view:"datatable", columns:[ { id:"rank", header:"", css:"rank", width:50 }, { id:"title", header:{ text:"Film title", css:{ "background":"#AFA" } } , width:200 }, { id:"year", header:"Released", width:80}, { id:"votes", header:"Votes", width:100} ], data:small_film_set, autowidth:true, autoheight:true }); }); </script> </body> </html>