1

通常HandsOnTable在列标题中有 A、B、C..,在行标题中有 1、2、3..。

我想反转它。即,A,B,C.. 用于行标题,1,2,3.. 用于列标题。

谢谢桑托什

4

1 回答 1

1

您可以呈现自定义行/列标题。以下代码片段来自文档。您可以使用标题准备一个适当的数组,然后将其传递给 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

于 2012-11-05T15:18:23.117 回答