FCKEditor - 如何使用工具栏上的保存图标?
这只是我第一次接触 FCKEditor。 我的简单问题是如何使用工具栏上的“保存”图标,我的第二个问题是如何删除/隐藏一些工具栏图标?
我正在使用 asp.net 和 c#。 谢谢。
It's just my first dive on FCKEditor. My simple question is how to use the Save icon on the toolbars, and my second question is how to remove/hide some of the toolbar icons?
I am using asp.net and c#. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这里提供了动态保存,但我似乎无法做到还没工作呢。
Dynamic saving provided here, but I can't seem to make it work yet.
要隐藏或删除某些图标,只需打开下面的文件并注释您不需要的图标:
我仍在研究如何利用 asp.net 下工具栏上的 SAVE 图标
for hiding or removing some icon, just open the file below and comment the icon that you don't want:
I am still looking on how to utilized SAVE Icon on the toolbar under asp.net
您应该编写自己的代码,因为编辑器不应该知道您保存内容的方式和位置。 这是我在基于 PHPBB 的 MFO 论坛 上的策略:
我禁用了保存按钮并添加了 ajaxAutoSave mod 既可以保存也可以自动保存。 当用户保存(或自动保存)他正在处理的内容时,我将其保存在服务器上的特殊位置。 每个用户都有一个,可以通过主菜单下的“我的最新草稿”取回。 因此,如果您的浏览器在写长帖子的过程中崩溃了,您可以将其恢复。 但是,您不能保存多于一篇文本。
你的策略可能会非常不同,这实际上取决于你在做什么。
You are supposed to write your own code, because the editor is not supposed to know how and where you save things. Here's my strategy on PHPBB-based MFO forums:
I disabled the save button and added ajaxAutoSave mod which does both saving and autosaving. When a user saves (or autosaves) what he is working on, I save it in a special place on server. Each user has one, and he can get it back by going to "My latest draft" under Home menu. So, if your browser crashed in the middle of writing a long post, you can get it back. But, you cannot have more than one text saved.
Your strategy can be very different, it really depends on what you are doing.