telerik

AjaxManager not found…null

蹲街弑〆低调 提交于 2019-12-25 13:12:14
问题 I have a User Control and a Content Page . In the Content Page , I have a RadDockLayout control inside Update panel like below. I have an Image button , Once user swaps the position of RadDock by Drag Drop . User presses save button to save the order in database. <asp:updatepanel id="UpdatePanel1" runat="server"> <ContentTemplate> <telerik:RadDockLayout runat="server" OnLoadDockLayout="RadDockLayout1_LoadDockLayout" ID="RadDockLayout1" OnSaveDockLayout="RadDockLayout1_SaveDockLayout">

AjaxManager not found…null

点点圈 提交于 2019-12-25 13:11:23
问题 I have a User Control and a Content Page . In the Content Page , I have a RadDockLayout control inside Update panel like below. I have an Image button , Once user swaps the position of RadDock by Drag Drop . User presses save button to save the order in database. <asp:updatepanel id="UpdatePanel1" runat="server"> <ContentTemplate> <telerik:RadDockLayout runat="server" OnLoadDockLayout="RadDockLayout1_LoadDockLayout" ID="RadDockLayout1" OnSaveDockLayout="RadDockLayout1_SaveDockLayout">

radtooltipmanager add targetControl using ajax

杀马特。学长 韩版系。学妹 提交于 2019-12-25 11:01:21
问题 I have a radtooltipmanager that have their target control inside datalist. This datalist is bound on the server side using ajax. I set the target control from itemdatabound event of datalist, but tooltip doesn't work. Any help please. 回答1: If you are using AJAX to initially bind the list (i.e., it does not happen on the initial load, but during a subsequent partial postback), make sure that you include the RadToolTipManager in the partial update, because otherwise its new targets will not

Telerik Rad Button Dyanamically check

僤鯓⒐⒋嵵緔 提交于 2019-12-25 09:37:15
问题 Have been unable to dynamically check a Telerik Rad Button control from the code behind in vb.net code. I have used things like chk_TypeEmployee.Checked = True with no result. <telerik:RadButton ID="chk_TypeEmployee" runat="server" ToggleType="Radio" ButtonType="StandardButton" GroupName="StandardButton" Text="Employee"></telerik:RadButton> <telerik:RadButton ID="chk_TypeAgency" runat="server" ToggleType="Radio" ButtonType="StandardButton" GroupName="StandardButton" Text="Agency"></telerik

ContextMenu Hyperlink in RadRichTextBox WPF

[亡魂溺海] 提交于 2019-12-25 09:28:14
问题 When i add a Physical path in a Hyperlink from ContextMenu of RadRichTextBox i see http:// getting added extra but in only in one scenario. I tried adding the link like below(The folder name has no spaces at the last), the above gives me correct URL. When i add the link with a folder which as spaces at the last like, I get the output like below when i edit the Hyperlink and see, //XAML <telerik:RadRichTextBox x:Name="ss" Grid.Column="0" Grid.Row="1" telerik:StyleManager.Theme="Windows8"

Not able to check and uncheck the checkboxes inside the radcombox

荒凉一梦 提交于 2019-12-25 08:48:35
问题 I am using telerik Radcombobox and in that radcombobox i am using some checkbox like this: But i am not able to check and uncheck the checkboxes which are inside the radcombox. <telerik:RadComboBox ID="rad1" runat="server" Width="200" Font-Names="Arial" DropDownWidth="460" AutoPostBack="true" EmptyMessage="Select Action Type(s)" EnableScreenBoundaryDetection="false" OffsetX="-0"> <HeaderTemplate> <div class="header"> <asp:CheckBox ID="selectAll" CssClass="All" runat="server" Text="Select All"

Telerik RadPropertyGrid Content of CollectionEditorPicker

泄露秘密 提交于 2019-12-25 08:11:41
问题 as the topic suggests I wan't to modify the Content of the CollectionEditorPicker. This control is used to open the floating Window for the List of nested Properties. Unfortunally the RadPropertyGrid don't show any Information about the collection in the Field. How can I set some value in there? For example a placeholder like "Click here to open the collection" or "xx Items" or "Item 1, Item 2, Item 3..." so see some preview or Information about the field. I've tried it with a template

How to create separate DetailTable on each row in a RadGrid?

让人想犯罪 __ 提交于 2019-12-25 08:11:20
问题 I have a telerik radgrid where columns and detail tables are declared like: <telerik:RadGrid> <Columns> <telerik:GridBoundColumn/> <telerik:GridBoundColumn/> </Columns> <DetailTables> <telerik:GridTableView <Columns> <telerik:GridBoundColumn/> <telerik:GridBoundColumn/> </Columns> </telerik:GridTableView </DetailTables> </telerik:RadGrid> Which gives a nested grid like this: Now, what I want is to be able to specify a detail table (those sub tables) per row, programmatically. (I cannot be

Command fire before object bind WPF

天涯浪子 提交于 2019-12-25 07:54:35
问题 I'm working on a WPF application with MVVM pattern using Telerik controls. Functionality: I'm using telerik:RadListBox which is generated in run time according to number of records. So, if i have 10 records in my collection 10 RadListBox will be shown in the application. When i select each RadListBox a detailed view(Related Values) of the SelectedItem will be shown in the nearby panel. Only one RadListBox can be selected at a time. Scenario: So after selecting a RadListBox and editing the

Storing filtered rows of dataGridView in a DataTable

爷,独闯天下 提交于 2019-12-25 07:19:37
问题 I have a RadGridView control in my form. I bind DataGriView by one parameter by a search control. I use this code to store my selected rows in a DataTable and show in a report: DataTable table = new DataTable("dt1"); foreach (Telerik.WinControls.UI.GridViewDataColumn column in radGridView1.Columns) { table.Columns.Add(column.Name, typeof(string)); } for (int i = 0; i < radGridView1.Rows.Count; i++) { table.Rows.Add(); for (int j = 0; j < radGridView1.Columns.Count; j++) { table.Rows[i][j] =