本文介绍了我如何设置FCKEditor的是只读?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我用我的WebForms应用FCKEditor的ASP.NET控件2.65。我怎样才能将其设置为只读($ P从服务器端pferably $)?
我没有看到Enabled或只读属性。
我缺少的东西真的很简单吗?
解决方案
- 裹在自己控制的控制。
- 在你的控制发布一个Enabled属性。
- 发表一个Value属性。管理状态这两个属性自己。
- 如果在渲染时启用= true,则委托给底层FCKEditor的控制。
- 否则,拿这个值只是渲染。
I am using FCKEditor ASP.NET control 2.65 in my WebForms application. How can I set it to be readonly (preferably from the serverside)?
I am not seeing either Enabled or Readonly properties.
Am I missing something really simple?
解决方案
- Wrap the control in your own control.
- Publish an Enabled property on your control.
- Publish a Value property. Manage the state for both of these properties yourself.
- If Enabled = true at the time of render, then delegate to the underlying FCKEditor control.
- Otherwise, take the Value and simply render it.
这篇关于我如何设置FCKEditor的是只读?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!