Thanks Allan I solved my problem now its works. I wrote following code and its working:
[code]
var oTable = $('#data_editable').dataTable({
"sPaginationType": "full_numbers",
"iDisplayLength": 10,
"oLanguage": {
"sLengthMenu": "Entries per page: _MENU_",
},
"sDom": '<"table_top"lf<"clear">>,<"table_content"t>,<"table_bottom"ip<"clear">>',
"fnDrawCallback": function () {
$('#data_editable tbody td').editable();
},
Replies
Edit: Sorry for the misleading information, I got confused by your example and hadn't really tested if sLengthMenu accepted HTML or not.
Allan
[code]
var oTable = $('#data_editable').dataTable({
"sPaginationType": "full_numbers",
"iDisplayLength": 10,
"oLanguage": {
"sLengthMenu": "Entries per page: _MENU_",
},
"sDom": '<"table_top"lf<"clear">>,<"table_content"t>,<"table_bottom"ip<"clear">>',
"fnDrawCallback": function () {
$('#data_editable tbody td').editable();
},
});
[/code]
Thanks Again
Jaman