在 slickgrid 中如何从 javascript 函数中删除一行
如何从按钮的 javascript 函数中删除一行 例如
how I can delete a row from a javascript function from a button
for example
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
如果您使用的是 DataView,请使用以下命令:
如果您只知道行号,则可以使用以下方法获取 RowID:
If you're using a DataView, use the following:
If you only know the row number, you can get theRowID using:
假设您正在使用 jQuery
Suppose you are using jQuery
这就是我的做法(虽然不使用任何数据提供程序):
我在实时项目中使用它并且运行良好。当然,如果您想删除多行,那么应该进行一些调整,或者如果您使用数据提供程序,那么您可能只想从数据提供程序中删除该行,然后让 SlickGrid 刷新这些行。
希望它有帮助:)
This is how i do it (not using any data provider though):
I use this in a live project and it runs well. Of course, if you want to remove multiple rows then a few tweaks should be made, or if you use a data provider then you'd maybe want to remove the row only from the data provider and then have SlickGrid just refresh the rows.
Hope it helps :)
这样使用的
是的,当然,我就是
yes of course, I use it this way
Greetings
你好
我用这个脚本删除 SlickGrid
函数的行deletefila(numrow)
{
}
hi
i'm used this script for delete row of SlickGrid
function deletefila(numrow)
{
}