动态创建RadEditor asp.net

时间:2011-08-04 07:13:53

标签: c# asp.net telerik radeditor telerik-editor

我想动态添加RadEditor。它会被添加到页面中,但是一旦发生回发,我就会得到找到具有相同ID的多个控件'EditorRibbonBarResourcesHolder'。下面是我用来动态添加控件的代码。

RadEditor editor = new RadEditor();
editor.ID = "editor_" + itemTypeattribute.ItemAttributeID + rand.Next();
cellAttributeValue.Controls.Add(editor);
editor.DialogOpener.ID = "editor_dialopOpener_" + itemTypeattribute.ItemAttributeID;
editor.DialogOpener.Window.ID = "editor_dialopOpener_window_"+ ItemTypeattribute.ItemAttributeID;
editor.ClientIDMode = ClientIDMode.AutoID;
editor.EnableEmbeddedScripts = true;
editor.Height = 200;

感谢任何帮助。感谢

1 个答案:

答案 0 :(得分:0)

每当我需要“动态”使用radeditor时,我会从页面开始使用visible = false,然后在需要时显示它。