Hello,
For a while now we are experiencing strange behavior when working with MacOS + Chrome combined.
On Windows + Chrome, when the dialog of the browser is set to small to force a horizontal scrollbar to appear, this works correctly
On MacOS + Chrome in the same situation the horizontal scrollbar does NOT appear.
Other browsers like FireFox do not show this behavior.
The issue can be seen in your own demo here:
https://demos.telerik.com/aspnet-ajax/grid/examples/overview/defaultcs.aspx
I included a screenshot showing the difference between Windows and MacOS, both using Chrome.
This is the same issue we are experiencing in our own product.
Are there any settings on the grid we can try to make the horizontal scrollbar visible?
We hope to hear form you soon.
Kind Regards,
Thinkwise
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.