Hi,
If website have h1 tags to include to cushycms its simple
<h1 class="cushycms"></h1>
But in case of JqGrid table how can its can work with cushycms? I need to insert class="cushycms" to columns names of jqGrid.
Example:How cushycms works with simple table(But with jqGrid I dont know):
<table>
<tr>
<th class="cushycms">name</th><th class="cushycms">phone</th>
</tr>
</table>
jqgrid example code- I dont see option to insert class="cushycms" to colums names:
jQuery("#grid").jqGrid({
"colModel":[
{"name":"OrderID","index":"OrderID","label":"ID","width":60, "key":true},
{"name":"OrderDate","index":"OrderDate"},
{"name":"CustomerID","index":"CustomerID"},
{"name":"Freight","index":"Freight"},
{"name":"ShipName","index":"ShipName"}
],
"url":"querygrid.php",
"datatype":"json",
"jsonReader":{repeatitems:false},
"pager":"#pager"
});