我累坏了Ext.net textEditor和HtmlEditor。有一个问题。
无法在文本属性上设置值。我尝试使用以下代码
txtBody.Text = "#{dynamicBody}"
htmlEditor.Text = "${dynamicSQL}"
Replaced after render on
txtBody.Text = Ext.Get("dynamicBody")
htmlEditor.Text = Ext.Get("dynamicSQL)"发布于 2017-07-21 05:59:30
如果你不想要令牌扩展,你应该在你的global.asax中禁用它,例如在Application_start()下。
TokenUtils.Settings.Disable = true;https://stackoverflow.com/questions/44660578
复制相似问题