
Hi, I am using Telerik.Web.Spreadsheet to load an Excel sheet. I would like to return the Excel sheet as a datatable, I cant see a property on how to do this. Any ideas would be much appreciated. Below is my code thus far:
Dim ExcelPath As String = "C:\Test\Test.xlsx"
Dim WorkBook As Telerik.Web.Spreadsheet.Workbook = Telerik.Web.Spreadsheet.Workbook.Load(ExcelPath)
Dim ws As Telerik.Web.Spreadsheet.Worksheet = WorkBook.Sheets(0)
Many thanks in advance

I have 4 Comboboxes on my pages, I want each of them to have same properties like
EnableAutomaticLoadOnDemand="true"
EnableVirtualScrolling="true"
Filter="Contains"
ItemsPerRequest="15"
MarkFirstMatch="True"
Skin="Default"
EnableLoadOnDemand="True"
ShowMoreResultsBox="True"
How can I achieve it without having to write same properties for each of them?

I have two formatting issues represented in attachements
1) Name of the uploaded file and 'remove' label do not align
2) If file name is too long it drops 'remove' label to the next line. My preference would be to limit displayed file name to particular length
Thank you
I have a permission system that I’m using for my RadFileExplorer and Hiding various menu items and buttons. The problem is the options appear to be loading in some cases after the RadFileExplorer’s ExplorerPopulated, ItemCommand, and Prerender.
I am doing something like the following to remove the item:
if (((RadFileExplorer)(sender)).GridContextMenu.Items.Any(d => d.Value == "Rename")) { ((RadFileExplorer)(sender)).GridContextMenu.Items.Remove(((RadFileExplorer)(sender)).GridContextMenu.Items.First(d => d.Value == "Rename")); }Similar code is working for the File Grid, but I can’t seem to get server code to apply to the FileTree, can I attach this code to the prerender the FileTree? Or does this disappear? DO I have to do this on the client side?
I’ve tried attaching to the PreRender of the FileTree and the FileTree’s Context Menu’s prerender, But I’m guessing that stuff gets overridden. At what point should I try to reattach these PreRender Overrides?
Or better yet is there an easier way of removing the FileTree’s Context menu’s specific items?

Hello,
I am using RadGrid for Bulk Update at Client Side.
I have a Dropdown in the Template column and inspite of me selecting an item by the time in click "Save changes" the value of that column is going as NULL in the Insert.
I have similar Template columns with RadDropdown and RadCombobox.... they all work fine. There is very minimal server side code to adjust the width of the columns.
In the attached file issue template column is "Specialcategory_FundingID"
Kindly post your suggestions.




| Dim window1 As New Telerik.Web.UI.RadWindow |
| window1.Modal = True |
| window1.Title = "Assign Team" |
| window1.VisibleTitlebar = True |
| window1.Width = 500 |
| window1.Height = 500 |
| window1.DestroyOnClose = True |
| window1.NavigateUrl = "~/assign_team_mod.aspx" |
| windowmanager.Windows.Add(window1) |
| window1.VisibleOnPageLoad = True |
| sys.webforms.pagerequestmanagerservererrorexception: failed to load viewstate. the control tree into which viewstate is being loaded must match the control tree that was used to save viewstate during the previous request. for example when adding the controls dynamically, the controls added during the post-back must match the type and position of the controls added during the initial reques |