Hello
I have several RadGrids with custom css applied to the columns. Everything works as intended. However, when a column is sorted, telerik applied the .rgSorted css and this completely defeats the purpose of the gird (in our application). What is the procedure to DISABLE or DELETE the .rgSorted css, as this particular class will never be needed or used.
Note: any css class definition with !important cannot be used in this context.
Thank you
I have encountered a niche issue I'm trying to solve. I have a grid with EnableViewState set to false. Based on this, the control state within the grid is used to manage things like sort expressions.
My issue is simply this:
I debugged against a few events of the grid and found that in ColumnCreated (after NeedDataSource) the grid restored its sort expressions from what I presume is the control state. So, this was between NeedDataSource and ColumnCreated.
When exactly did the sort expressions get restored, and is there an event I can listen to?
I'm experiencing an issue where the page becomes unresponsive for a long time whenever any Telerik control (such as refresh or loader) is triggered. The page keeps loading indefinitely, causing significant delays, and eventually, the page becomes unresponsive.
Additionally, the following error appears in the browser console:
Uncaught Sys.WebForms.PageRequestManagerTimeoutException: Sys.WebForms.PageRequestManagerTimeoutException: The server request timed out.
at Error.create (https://test.plc.com/GS/Telerik.Web.UI.WebResource.axd?...:6:2736)
at Sys.WebForms.PageRequestManager._createPageRequestManagerTimeoutError (https://wpinhouse.knpc.com/GPCS/Telerik.Web.UI.WebResource.axd?...:15:11219)
at Sys.WebForms.PageRequestManager._onFormSubmitCompleted (https://wpinhouse.knpc.com/GPCS/Telerik.Web.UI.WebResource.axd?...:15:11219)
The issue arises when interacting with Telerik controls that trigger a page request, causing the page to hang and ultimately become unresponsive.
issue started from Feb 17 2025
With the R2 2022 release Telerik added this support via a skin (BlackMetroTouch) but it seems it is limited to a server side setting and can't be done via client side? In particular I'm looking to do this for the RadGrid and change it via a user toggle and not have to make a post back to reload the page. Please let me know if there exists a way to do it at client-side.
Thanks,
Gerry
Hi,
We are getting the below error in radG and telRad calender etc.. properties are not working properly in visual studio 2019 4.5 .Net Framework and Telerik.Web.UI 2009.1.402.20 dll is used, when I click any link in grid then just loading not giving result, can anyone please help?
http://localhost:63648/WebResource.axd?d=voFyyN8dvBwW_B2Y7FVU-0v-b8hCvMFUuGTx5hVDM1rqxAp8wKgXAToLnmNbdlnxHBOLUkaqq_U_0pO0VsUG_T9IfSlUf_r5ftxqNxAthfXE57hZKdbPO85ezSDbr-LVBJ3Hg7mSvgJ8LozjsG3Ou4TJxZZrJc_U7ARWEn03vti-x_XufTEaKLkSIM7ML4ny0&t=638687597346095926
Uncaught Error: Unexpected ajax response was received from the server.Afternoon,
I am using a RadGrid with Batch Editing. Under a couple of conditions I want to be able to stop a cell from being edited.
I've followed another example using the OnBatchEditOpening client event:
function onBatchEditOpening(sender, args) {
args.get_tableView().get_dataItems();
var cell = args.get_cell();
var cellValue = cell.innerText;
var columnUniqueName = args.get_columnUniqueName();
var row = args.get_row();
var item = row.control;
var itemIndex = item.get_itemIndex();
if (itemIndex > -1) { // if itemIndex is -1 it means this is a new row
if ((columnUniqueName === "Process_type" && cellValue === "L") ||
(columnUniqueName === "Process_order" && cellValue === "1")) {
args.set_cancel(true);
}
}
It just so happens that when the process type is L and process order is 1 will occur in the same row, so all other rows should remain unaffected.
It works fine - I click in the row with 1 and L, and the process order and process type cells are not editable. However, when I then click on a field in another row I get this error:
This only occurs when I've clicked in the row with the non-editable cells first.
Any ideas on how to clear this?
Kind regards,
Richard
Hi
I have a Telerik rad grid which populates data, one of the columns is date and is in format of DD-MMM-YY.
when I click on the header of the column to sort, it doesnt sort it correct in ascending date or descending order. Im assuming its because of the format as the month is a string.
Can anyone advise how to get it to sort correctly please?
Thanks
Rakhee