HTML 表不允许添加/删除但允许更新并将最终表保存到数组中以供以后保存?

发布于 2025-01-05 21:18:50 字数 329 浏览 0 评论 0原文

是否有 JQuery 插件或代码可以在 HTML 表上执行以下操作?

  • 它不允许通过某些选项添加/删除行
  • 它只允许通过某些选项更新
  • 它将最终表(用户修改后)保存到数组中
  • 有一个按钮,当单击时,它会显示数组(这将反映通过用户)

我尝试使用此处中提到的数据表,但我不断收到“单元格无法更新”的消息 信息。因此,想知道是否有更简单的解决方案可用。

Is there a JQuery Plugin or code that can perform the following on a HTML table?

  • It disallow add / remove rows via some option
  • It allow update only via some option
  • It save the final table (after modification by the user) into a array
  • There is a button that when click, it display the array (that will reflect any changes by the user)

I have tried using the Datatable as mention in here, but I keep getting the "Cell cannot be updated" message. Thus, would like to know if there are any more simpler solution available.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

另类 2025-01-12 21:18:50

你可以试试这个,人们有很好的反馈。

http://trirand.com/blog/jqgrid/jqgrid.html

you ca try this, people have a good feedback of.

http://trirand.com/blog/jqgrid/jqgrid.html

七七 2025-01-12 21:18:50

我遇到了同样的问题,对我来说,结果是我没有传递我试图编辑的行的 id

            <tr id="@item.ID">
                <td>@item.Name</td>
                <td>@item.Address</td>
                <td>@item.Town</td>
            </tr>

请注意,id 是在“tr”元素中设置的

I was having the same problem and for me it turn out to be that i wasn't passing the id of the row i was trying to edit

            <tr id="@item.ID">
                <td>@item.Name</td>
                <td>@item.Address</td>
                <td>@item.Town</td>
            </tr>

Notice the id is set in the "tr" element

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文