Hello,
I am using Telerik 2012 Q3 (.NET40) in a web application. The last few months, I am getting occasional bug reports about broken functionality. I have been able to trace this down to a radWindow not opening in a pop-up, but in fact replacing the complete page. Users claim they open the page by clicking the designated button and this is confirmed by the URL in the address bar, showing a query string like ?rwndrnd=0.8599367708780101. For them, the bug occurs sometimes.
So far, I have not been able to reproduce this issue. Users reporting it, all seem to be using Internet Explorer 11. The start of this bug may or may not be related to the upgrade of the web application, or the introduction of a newer version of Internet Explorer. It is hard to find out. I have seen a report in which a javascript error was in the Console, of some unrelated code.
Unfortunately, I cannot point to the actual web application, as it is non-public.
Has this behaviour been seen before and is there a solution to it?
I use the following code to open the radWindow:
function OpenForNewCase() {var oManager = $find('<%= RadWindowManager1.ClientID %>');var oWnd = oManager.GetWindowByName("wndNewCase");oWnd.SetUrl('<%= ResolveClientUrl("Forms/NewCase.aspx") %>');oWnd.Show();}
Hi all,
I have a 'people' view listing users in a RadGrid, with an expand icon to show a detail table for each user. Inside the detail table I have a tabstrip separating areas for the user. My latest tab is 'documents' which needs to be dynamically generated server side, and contains a list of categorised (by tabs) list (in radgrids) of documents. My application is working ok, except when I open/expand another user's detail table. The documents tab renders correctly for the current open user only. All of the others just disappear. See screenshot attached for reference.
I am using the itemcommand event to check for the existence of the tabstrip tab(s) and if it exists I add the radgrid(s) (to the documents tabs), and if it does not I create the tab(s) and then add the radgrid(s).
Any ideas? Is there a better way to do this? I notice when I expand the details view the entire parent radgrid refreshes (loading panel). Is there a way, perhaps, just to refresh the open details view?
Thanks,
Alex.

Good morning
I shall create a functionality for my users: at double click on RadComboBox (with the dropdown close) the combo is cleared.
ComboBoxs don't have client-side events as double click, right click, or others events that I can use.
Can you help me? How can I do this directly with combo?

Hello Team,
When I return data set from db, it has a field named "MoreThan 20 chk is on here" which am trying to display on PivotGrid. But this field has more than 20 characters hence on pivot grid we can see column name as "MoreThan 20 chk is o", What changes am suppose to make so that it displays full name "MoreThan 20 chk is on here"
Refer attachments for more details.
Thanks,
Mohan

Hi All,
I have a monitor running at 125% scaling (set in Windows Display settings). The radgrid width is calculated incorrectly. For some reason I always get a grid that is 503px wide (100% would be about 1500).
Both setting the scale to 100% and refreshing the page fixes it.
Moving the window to another monitor at 100% scaling and refreshing fixes it.
This looks to 100% be a bug in the way Telerik determines width when scaling is used.
Thanks,
Will

In my asp.net application i programmatically create radgrid and add i to div and display it.
now i would like to add programmatically created radgrids to radgridwrapper. (now i would like to programmatically create radgridwrapper and add radgrids to it.)
Can anyone please let me know how to do this in c#?
later i would like to export radgridwrapper to excel / csv. finding it difficult to export groups of radgrids to multiple excel sheets with my Telerik version 2017.2.503.40
i don't want to upgrade my telerik version as of now.

Hello
I have a form that has 7 grids. Each grid is being displayed within a separate RadPanel. Screenshot is attached.
We are using the Persistent Framework to store user settings. The Save and Load work great! The Reset works great if we are resetting all the grids.
My question is, Is it possible to Reset just one grid and allow all other grids to maintain their settings? Is there a function available that allows us to get very granular when resetting certain controls on a page?
Thanks
Tom

I am using a RadGrid in batch edit mode with 4 editable columns.
This is working fine but I need to optionally set the columns as non-editable depending on which user is editing the screen.
eg. user A can edit all columns but user B can only edit 2 and user C only 1 column.
Is there a way to make an editable column non-editable when drawing the grid.
Thanks
Richard
Hi community,
I have a radgrid in batch mode bound to a list of tests. The user has to select 1 to n rows by checking checkboxes.
Then, I have a javascript function (CheckRequirement) that checks the consistency of the selected rows (ie.: test1 require test2).
What I need to do is enable/disable the SaveButton depending on the CheckRequirement function result.
Any idea to do this on client side?

Im having a small issue.
I have the radgrid using an expandable detail view associated. i have the functionality to bring up a document when clicked on the master row, but need to have only a javascript function fire when i click on the expanded detail row. currently whenever i click on a detail row it fires the main c# function i use to get my document. and i have tried adding a javascript call using the scriptmanager.RegisterClientScriptBlock c# to call my js function. but i need it to be done outside of the postback as i want to use the detail grid to pass a variable to javascript function.
