Hi,
I have just moved ComponentArt to Telerik so please pardon my ignorance.
I am trying to have a radgrid inside a panelbar item and was just wondering if its possible to load the radgrid only when the panelbar item is expanded/clicked?
I do not want to bring it from server unless the user clicks the panelbar item.
Can you please show me an example which achieves this effect?
Thank you
Hi,
We have a RadSearchBox that get populated using DataTable. We also have a RadListview on the same page. Our requirement is when data is loaded into Search dropdown, if the data is already in RadListview, that value should appear as BOLD in search drop down. Attached is an example. If Alabama Power is in the search box it should appear as bold.
Can anyone please help me with that.

Me.RTLGrid1.ExportSettings.Excel.Format = Telerik.Web.UI.GridExcelExportFormat.ExcelML
Me.RTLGrid1.ExportSettings.ExportOnlyData = True
Me.RTLGrid1.ExportSettings.OpenInNewWindow = True
Me.RTLGrid1.MasterTableView.ExportToExcel()
'Me.RTLGrid1.MasterTableView.ExportToCSV()
| <telerik:GridTemplateColumn DataField="role" HeaderText="Role" UniqueName="Role"> |
| <EditItemTemplate> |
| <asp:DropDownList ID="ddlRoles" runat="server" DataTextField="Role" DataValueField="Role" |
| Width="125px"> |
| </asp:DropDownList> |
| </EditItemTemplate> |
| <ItemTemplate> |
| <asp:Label ID="lblRole" runat="server" Text='<%# Bind("role") %>'></asp:Label> |
| </ItemTemplate> |
| <ItemStyle Wrap="False" /> |
| </telerik:GridTemplateColumn> |
| protected void rgUserAdmin_ItemDataBound(object sender, GridItemEventArgs e) |
| { |
| if (e.Item.ItemType == GridItemType.EditItem) |
| { |
| GridEditableItem edtItem = (GridEditableItem)e.Item; |
| DropDownList ddl = (DropDownList)edtItem.FindControl("ddlRoles"); |
| if (null != ddl) |
| { |
| ddl.DataSource = ForecastUtils.GetAllMetricUserRoles(); |
| ddl.DataTextField = "role"; |
| ddl.DataValueField = "role"; |
| // this is where I need to set the value of this ddl to the value |
| // from the Label on the ItemTemplate. |
| ddl.SelectedIndex = -1; |
| ddl.DataBind(); |
| } |
| } |
| } |

What would be a good approach to allow for rich content editing for each slide, basically want to have a dynamic amount of slides depending on images in a folder that will be a background image for the slide. Then each slide needs to have a layer of rich content that can be edited per slide.
Can i create slides (server side) per images in folder and inside the slide dynamically create a radeditor that has the image as background and store the content in my database and make sure i pause the slide on mouseover (when editor is in edit mode) to allow for editing. or is there any better approach to this? anyone done something similar?
Christian
Hi,
I am using Rotator to display banner images in the home page. I need to enable reponsive design for the various dimensions of the mobile devices.
I have fixed the width to 100%, however for various screen size, the rotator does not seem to adjust.
Please advise how to solve this issue
Hi,
I noticed in my web application that I was unable to select a .csv file to upload using the AsyncUpload control when using the MS Edge browser.
I initially though that it must have been excluded by the AllowedFileExtensions property, however found that it was working using Chrome.
I am not on the latest version of the RadControls but experienced the exact same issue on the demo site below
http://demos.telerik.com/aspnet-ajax/asyncupload/examples/draganddrop/defaultcs.aspx
I do have the anniversary update of Windows 10 installed and am wondering if it is related.
My version of Edge is as follows
Edge 38.14393.0.0
EdgeHTML 14.14393
Thanks,
Matt
