Page had an existing working RadGrid control.
Issue started after I dragged a NEW radgrid control onto the page.
Script Error:
Runtime: Error:
Script control 'gdtcSharedCalendar' is not a registered script control. Script controls must be registered using RegisterScriptControl() before calling RegisterScriptDescriptors().
Parameter name: scriptControl
Warning shown in Visual Studio.
c:\tfs\Test\FirmDB\FirmDB.Web\MasterPages\Main.Master: ASP.NET runtime error: Reference assemblies for target .NET Framework version not found; please ensure they are installed, or select a valid target version.
Any suggestions?
Thanks,
Rog

Hi
I am using visual studio 2022 c# .netframework 4.8 to create my application.
I am using telerik radgrid which has paging enabled. On the page there is a couple of inputs fields that users can enter, then when they run the Display button the values are passed the query that is run to populate the grid.
This works great if your on the first page of the data, if you scroll to the other pages and change the input fields value and click display the grid returns no rows. Even though the datasource has the correct rows, the grid is displaying no rows.
You can see the datasource has data returned
But the grid display nothing
I get the following error when exporting to an excel:
One of the columns does contain a "-" in the first position, but it is not a formula. Is there any way to export to excel and ignore formulas?

I am filtering a grid (tableview) in javascript to filter to a single condition.
$find(tableViewID).filter("Photo_Group", args.get_item().get_value(), "EqualTo");
However, where can I find how to filter to multiple conditions.
Ie the above condition OR filter("Photo_Group", "-1", "EqualTo");
I can see how to do this using the Filtering control, but I cannot show/use a filtering control on the page.
Language : vb
I have a table that contains a numeric field. Using this field value I generate variable numbers of CheckBoxes in a RadGrid PlaceHolder :
I am attempting reference the CheckBoxes in the selected row and do some processing if the a CheckBox is checked.
I can get the reference to the PlaceHolder : Dim phBlocksCheckBox As PlaceHolder = DirectCast(item.FindControl("phBlocksCheckBox"), PlaceHolder)
But the code to return the CheckBox reference is returning Nothing : Dim BlockCheckBox As CheckBox = DirectCast(phBlocksCheckBox.FindControl("BlockCheckBox_" & cbIndex), CheckBox)
Here is my code :
apsx :
Hi The following Web resource is not loading with the latest telerik version 2024.****. and affecting pagination. Can you please help if there is any css or C# code that may affect.
The application is built on asp.net 4.8 webforms. Also could you kindly treat it as high priority as its impacting clients.
Issue : The height and space margins are varying.
Kindly let us know if you need further details
Best Regards,
Sunil Shankar S R

I am trying to figure out how to accomplish this. I am not sure if the RadGrid is best use
I have a data query that will return one or more records
Example - data returned may look like
UserID, User Full Name, User Status, Hire Date, Manager Name, Location, Skill Set, Last Review
And I want to format it as
Record 1
Row - User ID, User Full Name, User Status, Hire Date, Manager Name
Row - Location, Skill Set, Last Review
Next Record
Row - User ID, User Full Name, User Status, Hire Date, Manager Name
Row - Location, Skill Set, Last Review
Etc.
I no problem filling data adapter, filling data table and then binding to grid in single row to record, but setting up multiple rows per record I am struggling.
Thanks


Scenario
The page has a left navigation panel that can be collapsed / expanded
On toggle, the main content container width is changed using CSS only (no page refresh)
On initial page load or full refresh, the grid renders correctly
On toggle of grid button in the expand mode only, the grid suddenly shows a horizontal scrollbar
Observed Behaviour
This happens only after clicking toggle ( external button written in C# code)
Rebinding the grid (Rebind()) or calling repaint() does not fix the issue
A full page refresh always fixes it.
How can i prevent the scoll from appearing when the grid has lesser columns. the scrolls appears from _Frozen.
Css used for toggle small -> condensed , and condensed -> small
.small .RadGrid .rgRow td,
.small .RadGrid .rgAltRow td,
.small .RadGrid .rgEditRow td,
.small .gridFillLayoutPanel .RadGrid_Metro .rgHeader th,
.small .gridFillLayoutPanel .RadGrid_Metro .rgGroupHeader th,
.small .RadGrid .rgRow > td,
.small .RadGrid .rgAltRow > td,
.small .RadGrid .rgEditRow > td,
.small .RadGrid .rgFilterRow > td {
padding-left: 8px !important;
padding-right: 8px !important;
line-height: 32px !important;
height: 32px !important;
font-family: @font-tab-title;
font-size: 12px;
padding-top: 7px !important;
padding-bottom: 7px !important;
text-align: left;
}
.condensed .gridFillLayoutPanel .RadGrid_Metro .rgRow td,
Best Regards,
Sunil Shanakr S R