or
Telerik.Web.UI.Editor.CommandList[
"Blue"] = function(commandName, editor, args) { editor.fire("ForeColor", { value: "#2e2e6c" }); };
Now I am in the same position when trying to fire the FlashManager dialog. While Telerik.Web.UI.Editor.CommandList["InsertPicture"] = function(commandName, editor, args) { editor.fire("ImageManager"); }; works well, the similar Telerik.Web.UI.Editor.CommandList["InsertFlash"] = function(commandName, editor, args) { editor.fire("FlashManager"); }; shows the error message "Dialog parameters for the FlashDialog doesn't exist". Could you tell me the proper syntax?
protected
void
g1_ItemCommand(
object
sender, GridCommandEventArgs e)
{
if
(e.CommandName ==
"AddPI"
)
{
// What goes here to init insert in detailstable[0]?
//e.Item.OwnerTableView.DetailTables[0].???
}
}