我似乎无法复制 CFGRID 中的行并粘贴它们

发布于 2024-12-16 01:14:26 字数 107 浏览 1 评论 0原文

我正在尝试复制 cfgrid 中的文本,但它根本不会复制任何内容。 cfgrid 格式为 HTML。我不想使网格可编辑,我只是​​希望用户能够剪切和粘贴 cfgrid 中的内容。

谢谢

I am trying to copy the text in a cfgrid but it simply wont copy anything. The cfgrid format is HTML. I do not want to make the grid editable, I just want the user to be able to cut and paste what is in the cfgrid.

Thanks

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

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

发布评论

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

评论(1

自找没趣 2024-12-23 01:14:26

底层 ExtJS 网格的限制。您最好编写一个选择事件处理程序,即用户选择(单击)一行,并且该数据被保存到用户剪贴板(可能被安全功能阻止),或者在模态对话框中弹出。文本区域,方便剪切和粘贴。

有关编写该选择处理程序的更多信息,您需要搜索版本 3.1(适用于 CF 9)或 2.2(适用于 CF 8)的 ExtJS 文档。

Limitation of the underlying ExtJS grid. You may be better off writing a selection event handler, i.e. the user selects (clicks on) a row, and that data is saved to the users clipboard (could be blocked by security features), or pops up in a modal dialog, inside a textarea, for easy cut and paste.

For more info on writing that selection handler you'll want to search out the ExtJS docs for version 3.1 (for CF 9) or 2.2 (for CF 8).

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