| <telerik:RadMenu ID="RadMenu1" runat="server" Skin="Web20" EnableEmbeddedSkins="true" |
| EnableEmbeddedBaseStylesheet="true" Flow="Horizontal" Width="100%" OnItemDataBound="RadMenu1_ItemDataBound" > |
| <DataBindings> |
| <telerik:RadMenuItemBinding TextField="Link" NavigateUrlField="LinkURL" TargetField="LinkTarget" /> |
| </DataBindings> |
| </telerik:RadMenu> |
| private void BindMenu() |
| { |
| DataSet ds; |
| if (Session["Menu"] != null) |
| { |
| ds = (DataSet)Session["Menu"]; |
| } |
| else |
| { |
| ds = ConnecTED.BindTEDMenu(); |
| Session["Menu"] = ds; |
| } |
| RadMenu1.DataSource = ds; |
| RadMenu1.DataTextField = "Link"; |
| RadMenu1.DataValueField = "LinkURL"; |
| RadMenu1.DataFieldID = "LinkID"; |
| RadMenu1.DataFieldParentID = "ParentLinkID"; |
| RadMenu1.DataBind(); |
| } |
| protected void RadMenu1_ItemDataBound(object sender, RadMenuEventArgs e) |
| { |
| if (!SecurityHandler.CanViewLink(SafeValue.SafeInt(Session["UserID"].ToString()),DataBinder.Eval(e.Item.DataItem, "Link").ToString())) |
| { |
| e.Item.Visible = false; |
| } |
| } |
oWnd.close(myJson);
myJson contains the following : {"Hello":"true"}
and it doesn't work, I got an issue on the parent when it loads.
Sy had the issue already ?
thx in advance
Note it works if I pass a simple string as "Hello" for instance
I use the Telerik RadEditor to display editable documents selected from a RadList box. I populate the editor programmatically (server side) as the user selects items from the list box. The TextChanged event fires when ever the user modifies a document, that's good. It also fires when the user selects a different list item (radeditor is loaded programmatically via radeditor1.contents=), this is bad.
I'm wondering if there is some way to disable the TextChanged Event temporarily when the radeditor is populated programatically but retain the behavior that the TextChanged event fires if the user actually makes a change to the document in the radeditor.
Thanks in advance.

| <telerik:RadComboBox ID="cmbConferenceInformation_ConferencePhone" runat="server" Width="250" HighlightTemplatedItems="true" DataTextField="Text" DataValueField="Name" OnItemDataBound="cmbConferences_ConferencePhones_ItemDataBound" OnSelectedIndexChanged="cmbConferences_ConferencePhones_SelectedIndexChanged" AutoPostBack="true"> |
| <ItemTemplate> |
| <table border="0" cellpadding="0"> |
| <tr> |
| <td><telerik:RadMaskedTextBox ID="txtConferenceInformation_ConferencePhone_OtherPhone" runat="server" Width="80" Mask="(###) ###-####"></telerik:RadMaskedTextBox></td> |
| </tr> |
| </table> |
| </ItemTemplate> |
| </telerik:RadComboBox> |
Hi,
I am using telerik radgrid with the Command item Insert/Update/Delete
Few issue i have experienced
Please check against the following link.
http://demos.telerik.com/aspnet-ajax/grid/examples/programming/commanditem/defaultcs.aspx
Add Case:-
1) When I click on the AddNew button ,below option is comming in the header
Please tell me how to remove Edit Selected and Delete selected customer from here ,also can you tell me what's the use of these button when we are adding a new customer.
Custom command item template Edit selected Cancel editing Add this Customer Delete selected customers Refresh customer list
Edit Case.(Single row select)
2) If we doesn't select any row before clicking on the EditSelected button,can we show a popup saying that "Please select the customer to edit."(like Delete case.)
Please