<telerik:RadAjaxManagerProxy ID="UserAjaxManager" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="UserListGrid">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="UserListGrid" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="RefreshList">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="UserListGrid" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="DeleteSelectedItems">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="UserListGrid" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="Search">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="UserListGrid" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManagerProxy>
<telerik:RadWindowManager ID="RadWindows" runat="server" Skin="Web20" Behaviors="Close,Move,Resize"> <Windows> <telerik:RadWindow Height="362" Width="504" ID="ViewWindow" OnClientClose="updateRadGrid" RegisterWithScriptManager="false" runat="server" CssClass="actionWindow" NavigateUrl="UserEditor.aspx" VisibleStatusbar="false" VisibleTitlebar="true" ReloadOnShow="true"> </telerik:RadWindow> </Windows> </telerik:RadWindowManager> <telerik:RadCodeBlock ID="RadCodeBlock1" runat="server"> <script type="text/javascript"> //View USER function showUserViewerWindow(userId) { var actionWindow = $find("<%=ViewWindow.ClientID %>"); actionWindow.setUrl("UserViewer.aspx?userId=" + userId); actionWindow.show(); } //UPDATEGRID function updateRadGrid(sender, eventArgs) { var ajaxManager = $find("<%= RadAjaxManager.GetCurrent(Page).ClientID %>"); ajaxManager.ajaxRequestWithTarget("<%= RefreshList.UniqueID%>"); } </script> </telerik:RadCodeBlock>Hi,
I am using RadEditor in my web application.
Please suggest, how i can add text in editable and non editable area of RadEditor dynamically by coding in c#.
(For Example 3 to 4 lines of Address in non-editable part that come from database).
i want to save the editable text after text change and i don't want this in any button click.
i have to save all the contents in MS Word in user's system.
Aslo i want to hide all the tools of radeditor and implement copy & paste,
changing the text format on button click events that are outsite the editor.
Thanks
Vikram
<div class="left width350" id="divAdministrationModules" runat="server"> <div class="divborder maarginleft20 width350"> <asp:Panel ID="panelAdministrationModules" CssClass="" runat="server"> <div class="divSearchHeader width350"> <asp:Label ID="LabelAdministrationTitle" runat="server" Text="Administration Modules" CssClass="divSearchHeaderText" /> <div class="floatRight"> <asp:ImageButton ID="ImageButtonAdministration" runat="server" ImageUrl="~/images/collapsible.gif" AlternateText="(Show/Hide Details...)" /> </div> </div> </asp:Panel> <asp:Panel ID="panelAdministrationModulesContent" runat="server" CssClass="maarginleft20 width350" Style="overflow: hidden;"> <telerik:RadTreeView OnClientNodeChecked="AfterCheck" ID="treeViewAdministrationFunctionals" TriStateCheckBoxes="true" CheckBoxes="true" runat="server" autopostbackoncheck="false" Width="350px"> </telerik:RadTreeView> </asp:Panel> <ajaxToolkit:CollapsiblePanelExtender ID="AdministrationMenu" BehaviorID="cpbExtender2" runat="Server" TargetControlID="panelAdministrationModulesContent" ExpandControlID="panelAdministrationModules" CollapseControlID="panelAdministrationModules" Collapsed="false" ImageControlID="ImageButtonAdministration" ExpandedImage="~/images/Uncollapsible.png" CollapsedImage="~/images/collapsible.png" SuppressPostBack="true" /> </div> </div>
Hi Team,
We are using the telerik rad combo box (Version-2.7.2.0.) in our project.
We came across some issues with Rad combo box.
Follwing are the replication steps for the issue
On click of “Ok” button.We got one more error.:(ScrrenShot2)
Below are the details of telerik rad control and my application.
1) It is web application developed in asp.net1.1
2) It uses telerik rad combo box of version 2.7.2.0.
3) It uses load on demand property with Item Requested event.
We have done some analysis. Below are findings
1) The error pop up is coming from Rad combo box in built .JS file.
Can you please provide reason and solution for the following problem?
Reason for above error and solution.
Any service release of telerik control for this issue and whether it is compatible with asp.net1.1
Thanks & Regards,
Namrata
<telerik:RadGrid runat="server" ID="Grid" PageSize="20" Width="100%" EnableViewState="false" CssClass="basicList">
<MasterTableView AutoGenerateColumns="false" AllowPaging="true" AllowCustomPaging="true" AllowSorting="true" DataKeyNames="ID">
Grid.PageIndexChanged: Calls LoadData(true)
Grid.PageSizeChanged: Calls LoadData(true)
Grid.SortCommand: Calls LoadData(true)
Grid.ItemCommand: Calls LoadData(false) and Grid.Rebind()
Grid.ItemDataBound
Grid.NeedDataSource: Calls LoadData(false)
Page_Load: If not a postback, calls LoadData(false)
I can send this page code privately if needed.
Thank you.