Style "click to edit" message and jeditable columns

Style "click to edit" message and jeditable columns

adrigenadrigen Posts: 3Questions: 0Answers: 0
edited October 2011 in Plug-ins
I am using the jquery-datatables-editable plugin and would like to style the "click to edit" message with a colour (green).
Is there a way I can add a class to the tds for this? I'd like to do it in the function call if possible, since that is where the editable columns are defined (I did try just wrapping the message with but in ie7, this code shows up in the edit box):

$(document).ready(function(){
var oTable = $('#x').dataTable({
"bPaginate": false,
"bLengthChange": false,
"bFilter": true,
"bSort": false,
"bInfo": false,
"bAutoWidth": false
}).makeEditable(
{
sUpdateURL: "UpdateData.php",
"aoColumns": [
null,
null,
null,
null,
null,
null,
null,
null,
null,

{
event : "click"
},
{
event : "click"
},
{
event : "click"
},
{
event : "click"
},
null,
null,
null,
null,
null,
{
event : "click"
}

]
});
This discussion has been closed.