This is a migrated thread and some comments may be shown as answers.

Trouble with Grid,Please help me.

1 Answer 38 Views
Grid
This is a migrated thread and some comments may be shown as answers.
songsp
Top achievements
Rank 1
songsp asked on 30 Mar 2010, 09:22 AM
Hello,telerik.
I met 2 questions where I start with Telerik.
1. How to scroll the position I want in Telerik grid?
For example: After I add new record to the table ,I return the grid list where I want  scrolling the position row i just added.
I look the help example implementing in the client side.how to implement in the server side?
2. About telerik schedule.
In scheduler , the editing form shows when I click the Appoinment.
In my project, Requirement is  Showing the detail form of the appointment that can not be  edited when I click the appointment
in scheduler.How can I do?

Please help me,thanks.

1 Answer, 1 is accepted

Sort by
0
Carl
Top achievements
Rank 1
answered on 30 Mar 2010, 04:02 PM
The scroll into view feature which you are referring to is a client-side only function. You can always deem the new item as a selected item and then use the scrollIntoView function on this item like so:

JavaScript:
function Scroll()   
{   
    row = this.MasterTableView.SelectedRows[0];   
    row.Control.scrollIntoView();   
}     

That should be your best option for this.

As for your appointment issue (although it is not a RadGrid topic) you should be able to read over this forum thread to see suggestions on how to only show the details of the appointment and not edit them.
Tags
Grid
Asked by
songsp
Top achievements
Rank 1
Answers by
Carl
Top achievements
Rank 1
Share this question
or