0

我正在尝试在 ASP.NET MVC (Razor) 项目中使用“ Handsontable Grid ”。以前有人用过吗?可能吗?您能否提供一些样本作为起点?

谢谢你。此致。

4

1 回答 1

2

是的,但是 Handsontable 和 MVC 之间确实没有“真正的”交互。

Handsontable grid is databound to an array. It has no built-in properties where you can set an URL for the plugin to get and post data by itself; you are responsible for handling ajax getting and posting data, as well as marshalling and unmarshalling your json or xml to array.

Javascript performance is crucial for UI responsiveness. Large grid on IE8 may not run well for intense editing. That might not be a real issue since, in my opinion, the real killer feature is cutting and pasting to and from Excel, you can simply advise your users to use Excel if they need to do heavy editing.

于 2013-09-06T07:09:26.720 回答