1

Can someone help me to decide when i should use The Table component over the Data Table with "Editable" option selected?.

I know the logic approach could be to consider the amount of information the table will present in the coach and Choose Data Table for large chunks of data, however, with the capabilities of the normal Table (Pre-load, Lazy load) is not clear when to use one over the other.

Thank you

4

1 回答 1

2

如果您使用选中“可编辑”的数据表控件,您实际上使用的是与表控件完全相同的代码库。

所以真正的问题是:“我什么时候应该使用可编辑与只读?”

我对这个问题的回答是:

  • 如果您有一个小数据集,请始终使用 Editable。这将大大简化事情。
  • 如果您有一个大型数据集,但需要允许内联编辑,请使用 Editable。
  • 如果您有一个大型数据集,并且您不需要允许内联编辑,我仍然建议使用可编辑模式,除非性能成为问题。我说只读模式的原因是将表格中的每个控件都视为输出文本,并忽略一些您在构建表格时可能认为重要的配置。此外,在表格内使用模式显示变得很复杂。

所以总而言之,你真的应该只使用只读模式作为最后的手段。即便如此,还有其他方法可以提高表性能,包括服务器端加载选项。

欲了解更多信息,请访问此链接

希望有帮助,

戈登

于 2016-09-09T17:44:44.420 回答