Django 管理 + dijit-editor :页面顶部不必要的额外字段
我已使用此博客文章中的说明将 dojo rtf 编辑器添加到 django 管理页面 (将 Dojo Rich Editor 与 Django 的 Admin 结合使用)。
问题是页面顶部出现了额外的 rtf 编辑器。 我该如何摆脱这个?
该项目的源代码可以在 gautamk/QPaperGenerator-Django - GitHub 中找到。
I have added a dojo rtf editor to a django admin page using the instructions from this blog post (Using Dojo Rich Editor with Django's Admin).
The problem is that there appears and extra rtf editor at the top of the page .
How do I get rid of this ?
The Source Code for the project can be found at gautamk/QPaperGenerator-Django - GitHub.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信问题在于所有
textarea
元素都变成了 dijit 编辑器小部件。错误代码位于 editor.js 中:如您所见,查询选择所有
textareas
,而不仅仅是您想要的文本区域。现在,我不知道为什么屏幕顶部会有一个文本区域,但想必它也受到了这个查询的影响。要解决该问题,请尝试更具体的查询。例如其中之一:I believe the problem is that all
textarea
elements are getting turned into dijit editor widgets. The code at fault is in editor.js:As you can see, the query selects all
textareas
, not just the ones you want. Now, I have no idea why there's a text area up at the top of your screen to begin with, but presumably it's getting hit by this query too. To fix the problem, try a more specific query. For instance something like one of these: