Hi,
When i m trying to run scripts in RDP and close/minimize the screen scripts are not running in that RDP. Can i get any solution for this please?
Thanks & Regards
Srilatha Sapireddi.

When I search for Telerik stuff on google I get links in the form https://docs.telerik.com/devtools/winforms/api/html/m_telerik_underscore_delimited_path.htm, but you have updated your site, so the links should be in the form https://docs.telerik.com/devtools/winforms/api/telerik.dot.delimited.path.html. Even your internal search feature relies on Google search. They seem to be lazy about updating the links, or (more likely) there is something wrong on your side. You should fix it, so that Google becomes your friend again...
Even Wayback Machine is not aware of the changes...

I am using UI for ASP.NET MVC Grid.
I need to export editable grid data into excel and then import on same grid for some data manipulation
But I have restriction not to export the footer row and having 15 visible column out of which 6 column need not to exported.
After doing a lot of research I found this way I can only export without footer but could not able achieve removing desired column in gird data export.
function ExportToExcel(e) {
var rows = e.workbook.sheets[0].rows;
var newRows = []
for (var ri = 0; ri < rows.length; ri++) {
var row = rows[ri];
//row.hideColumn.hideColumn("Col1");
//row.hideColumn.hideColumn("Col2");
//row.hideColumn.hideColumn("Col3");
//row.hideColumn.hideColumn("Col4");
//row.hideColumn.hideColumn("Col5");
//row.hideColumn.hideColumn("Comments");
if (row.type !== "group-footer" && row.type !== "footer") {
newRows.push(row)
}
}
e.workbook.sheets[0].rows = newRows
}
Kindly post your solution with sample code to remove desired columns from gird while export along with removing footer row.
Please let me know if any more detail needed. in the code above commented code is just example one of the example how many way I tried but not succeeded.
Thank you
Hi All,
We have a web application with multiple requirements and need assistance with RADCONTROLS
If this is something your comfortable with please contact me with availability via email or call
Email: Kai@dnkenterprise.com
Mobile: +447511442700
SKYPE Email: kkvaja@gmail.com

Hi,
I am using UI for ASP.NET MVC Grid.
with the gird option .Scrollable(scrollable => scrollable.Virtual(true)).
There are grid event like
.Events(events => events.Change("onNoDiscountGridChange"))
.Events(events => events
.DataBound("onNoDiscountGridDataBound")
.Save("onNoDiscountGridSave")
.Edit("onNoDiscountGridEdit").
We have requirement scenario that we can dynamically add as many rows user want.
After user successful add row in grid and start entering in it based on this input we need to get data from back end and fill the gird row with the return value.
So when user complete entering input in text box and click tab key ,the scroll bar is visible. After the onNoDiscountGridChange metod is called scroll bar not remain on same position in scroll up and edit row goes hide.
to deal with situation calling scroll() ,have applied below code in onNoDiscountGridChange() but not working at all.
Please suggest what is the solution to keep grid scrollbar at same position during cell edit on change.
function scroll() {
var grid = $('#gridNodiscount').data('kendoGrid');
if (grid.content.data('kendoMobileScroller')) {
grid.content.data('kendoMobileScroller').animatedScrollTo(0, -1 * grid.select().position().top);
} else {
grid.content.animate({
scrollTop: grid.select().position().top
}, 400);
}
}
We are also calling scroll method in the onNoDiscountGridSave and onNoDiscountGridDataBound(arg) method
function onNoDiscountGridSave(e) {
isCostChanged = true;
this.refresh();
scroll();
}
Please let me know if any more clarification needed.
Thanks