在handsontable中按值列表进行过滤,并使用自定义渲染器显示不同的值,然后在表格单元格中显示

时间:2018-07-25 13:42:07

标签: angular handsontable

我正在使用Handsontable-pro 5.0.0和角度包装器。

我有很多嵌套的数据对象,它们需要特定的转换才能在单元格中显示正确的值。为此,我使用了自定义渲染器-诸如此类:

import numpy as np

s = pd.Series(data=[1,2,3],index=['a','b','c'])

df = pd.DataFrame(0, index=s.index, columns=s.index, dtype=s.dtype)

np.fill_diagonal(df.values, s)
print (df)
   a  b  c
a  1  0  0
b  0  2  0
c  0  0  3

对于从嵌套属性中获取值的列,值列表过滤器 [object Object] 作为值。

jsfiddle

enter image description here

如何使列表显示与单元格相同的值?

编辑1:

ExportToCsv插件也是如此。

0 个答案:

没有答案