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].??? }}else if (e.CommandName == RadGrid.PerformInsertCommandName) { e.Canceled = true; e.Item.OwnerTableView.InsertItem(); RadGrid_Visitor_RT.MasterTableView.IsItemInserted = false; RadGrid_Visitor_RT.Rebind(); }<telerik:RadGrid ID="RadGrid_Visitor_RT" runat="server" AutoGenerateColumns="false" Width="100%" AllowMultiRowSelection="false" AllowPaging="True" AllowCustomPaging="False" PageSize="10" AllowAutomaticInserts="False" GridLines="None" CellPadding="0" AllowSorting="false" Skin="Outlook" OnItemDataBound="Visitor_RT_ItemDataBound" ItemStyle-VerticalAlign="Top" OnNeedDataSource="RadGrid_Visitor_RT_NeedDataSource" OnItemCommand="RadGrid_Visitor_RT_ItemCommand"> <PagerStyle Mode="NextPrevAndNumeric"/> <MasterTableView Width="100%" CommandItemDisplay="Top" GridLines="None" AllowAutomaticInserts="True"> <CommandItemSettings ShowAddNewRecordButton="true" AddNewRecordText="Create Transaction" ShowRefreshButton="false" ShowExportToCsvButton="false" ShowExportToExcelButton="false" ShowExportToPdfButton="false" ShowExportToWordButton="false"/> <Columns> <telerik:GridBoundColumn UniqueName="User_Logs_Auto_ID" DataField="User_Logs_Auto_ID" HeaderText="Log ID" Visible="false"/> <telerik:GridBoundColumn UniqueName="User_Logs_DateTime" DataField="User_Logs_DateTime" HeaderText="Time" HeaderStyle-Width="35%" Visible="true" ItemStyle-VerticalAlign="Top" /> <telerik:GridImageColumn DataType="System.String" AlternateText="F_Key" DataAlternateTextField="Function_Key_Description" UniqueName="GridImageColumn_Function_Key" ImageAlign="Middle" ImageHeight="16px" ImageWidth="23px" HeaderText="" DataImageUrlFields="Function_Key_Description" DataImageUrlFormatString="Images/OnTime_Fkeys/{0}.png" HeaderStyle-Width="10%"/> <telerik:GridBoundColumn UniqueName="Terminal_Name" DataField="Terminal_Name" HeaderText="Terminal Name" HeaderStyle-Width="25%" Visible="true" ItemStyle-VerticalAlign="Top"/> <telerik:GridBoundColumn UniqueName="Terminal_Location" DataField="Terminal_Location" HeaderText="Terminal Location" HeaderStyle-Width="30%" Visible="true" ItemStyle-VerticalAlign="Top"/> </Columns>