私のjqueryデータテーブルは編集可能になりません..私は単純なhtmlページを使用しています
jQuery(document).ready(function () {
jQuery('#detailsgrid').dataTable()
.makeEditable();
});
このように行を追加します
function addrow() {
//alert("sxcsdsd");
//jQuery('#detailsgrid').dataTable().makeEditable();
jQuery('#detailsgrid').dataTable().fnAddData([
'<input id=\"Checkbox\" type =\"checkbox\" name = chk onclick = javascript:removeRow(this) />',
jQuery("#txtcasetype").val(),
jQuery("#txtcd").val(),
jQuery("#txtpatclass").val(),
jQuery("#txtcd1").val(),
jQuery("#txtresamt").val(),
jQuery("#txtadmamt").val()]);
}
私が間違っているところ..必要なプラグインも登録しました
<script src="jquery.dataTables.js" type="text/javascript"></script>
<script src="jquery.dataTables.editable.js" type="text/javascript"></script>