【发布时间】:2012-09-15 15:34:49
【问题描述】:
【问题讨论】:
标签: jquery html handsontable
【问题讨论】:
标签: jquery html handsontable
您可以呈现自定义行/列标题。以下代码片段来自文档。您可以使用标题准备一个适当的数组,然后将其传递给 colHeaders / rowHeaders:
$container.handsontable({
colHeaders: [
"<b>Bold</b> and <em>Beautiful</em>",
"Some <input type='checkbox' class='checker'> checkbox"
]
});
这里是文档的链接: http://handsontable.com/demo/renderers_html.html#header
【讨论】: