I am using jquery.dataTables.js plugin, with this i have created a double table where i can add the rows from one table to another table and remove vice versa.How can i disable the add and remove buttons.Please verify the image for more idea.
Here is the code that I tried:
$.fn.doubletable = function (opts) {
var node_img_remove = "<img src='" + root + "images/"+theme+"ico_moove-down.png' class='button_remove' style='float:none; cursor:pointer;' title='"+titleRemove+"' alt='"+titleRemove+"' />";
var node_img_add = "<img src='" + root + "images/"+theme+"ico_moove-up.png' class='button_add' style='float:none; cursor:pointer;' title='"+titleAdd+"' alt='"+titleAdd+"' />";
}