我似乎无法复制 CFGRID 中的行并粘贴它们
我正在尝试复制 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
底层 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).