When adding a row dynamically using jQuery DataTables plugin, what do I do if one of the cells has to be, say, a checkbox? Just put the HTML in quotes?
问问题
14086 次
1 回答
10
好的,现在我知道这是我正在使用的插件。
我在服务器上做了我的,但你应该只在列中写 html。
我会在几分钟内尝试做一个例子。
这就是我的复选框来自服务器的方式
"CheckBox":"\u003cinput type=\"checkbox\"\u003e\u003c/input\u003e"
然而,这应该工作
dataTable.fnAddData(['<input type="checkbox" name="vehicle" value="Bike" />','SomeOtherDataForAnotherColumn']);
于 2010-08-09T21:31:49.637 回答