or
RadButton b = new RadButton();b.ID = "btnAddNew";b.Text = Resources.GetText("Add");b.CommandName = "Add";b.Skin = "Office2010Silver"; b.AutoPostBack = false;b.Icon.PrimaryIconCssClass = "actionBarAdd";b.Attributes.Add("OnClientClicked", "UsersActionButtonClicked()");GridClientSelectColumn GridClientSelectColumn1 = new GridClientSelectColumn();GridClientSelectColumn1.UniqueName = "Select";GridClientSelectColumn1.ItemStyle.VerticalAlign = System.Web.UI.WebControls.VerticalAlign.Top;GridClientSelectColumn1.ItemStyle.Width = System.Web.UI.WebControls.Unit.Pixel(35);GridClientSelectColumn1.HeaderStyle.VerticalAlign = System.Web.UI.WebControls.VerticalAlign.Top;GridClientSelectColumn1.HeaderStyle.Width = System.Web.UI.WebControls.Unit.Pixel(35);GridClientSelectColumn1.HeaderText = "";GridClientSelectColumn1.Visible = true;RadFileExplorer1.Grid.Columns.AddAt(0,GridClientSelectColumn1);
Hello,
in the Link Manager Dialog, for the fields with id="LinkURL" and id="LinkTargetCombo",
I would like to use respectively a RadTextBox and a RadComboBox (the aspect of the
corresponding components input and select is not that of the selected skin fot the RadEditor).
How can I modify the JavaScript code in LinkManager.ascx so that everything is working fine?
For the RadTextBox I've tried to change $get("LinkURL") with $get("LinkURL_text"), but when
I click on the RadTextBox its content disappears.
Thank you very much
AB

var oWnd = $find("<%=radNewProjectWizard.ClientID%>"); oWnd.show(); oWnd.set_title("New Project Wizard"); oWnd.MoveTo(482, 100); oWnd.add_pageLoad(function () { oWnd.set_status("MyProject"); }); oWnd.add_close(NewProject_OnClientClose);<body onload="OnLoad()"> <...> function OnLoad() { GetRadWindow().set_status("Step 2 of 4"); } function GetRadWindow() { var oWindow = null; if (window.radWindow) oWindow = window.radWindow; //Will work in Moz in all cases, including clasic dialog else if (window.frameElement.radWindow) oWindow = window.frameElement.radWindow; //IE (and Moz as well) return oWindow; }<style type="text/css">.RadCalendarPopup{ z-index: 10000!important;}</style>
