|
Title: datagrid - How can I scoll to a specific column Post by: Stefan B. on November 14, 2014, 07:28:34 AM We have an big datagrid with many rows. But only 2 Rows are editable.
When the user double click on the row we will scroll to the first editable cell to show the user what he can edit. How can we scoll to a specific cell in an row? Title: Re: datagrid - How can I scoll to a specific column Post by: stworthy on November 14, 2014, 08:55:53 AM Focusing the editor will make the datagrid auto scroll to that column. After enter the editing mode, please focus on the specified editor.
Title: Re: datagrid - How can I scoll to a specific column Post by: Stefan B. on November 17, 2014, 12:59:27 AM THX its working.
Code: var ed = $(this).edatagrid('getEditor',{index:index, field:'testfield'}); |