Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用启用 AddRow 选项,但我希望新行显示在网格的顶部...任何建议;Beloiw 是 slickgrid.js 中的文档。
enableAddRow -(默认为 false)如果为 true,则底部将显示一个空白行 - 在该行中键入值将添加一个新行。
谢谢!
function addRowToTheTop(){ grid.getData().splice(0, 0, {}); grid.invalidateAllRows(); grid.updateRowCount(); grid.render(); }
调用此函数可在网格顶部添加一个空行。不是很有效,但它有效。