主题: ASP.NET 如何将 KindEditor 切换为只读? |
作者: 摆摆, 发布日期: 2011-01-19 00:24:08, 浏览数: 6279 |
我现在需要在后台做出一个判断,然后确定是否需要将Editor切换为只读
Page.ClientScript.RegisterStartupScript(typeof(String), "txtEditor", "KE.toolbar.disable('txtEditor', []);", true);
Page.ClientScript.RegisterStartupScript(typeof(String), "txtEditor", "KE.readonly('txtEditor', true);", true);
两个都没有效果,第二种在IE8下报脚本错误:
在加载的时候用 afterCreate 来实现只读(演示里的方法) 没有问题
请问该如何实现? |