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

About Rad Grid

1 Answer 22 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Rahul Khinvasara
Top achievements
Rank 1
Rahul Khinvasara asked on 04 Dec 2009, 07:46 AM
Hi,

I am using Q2 2009.  I have grid.and there are Two Arrows button Right and left .I want to do the following functionality

When these arrows are clicked, the data grid should move 3 cells to the right or left accordingly

Please give me the solutions ASAP.

Regards

Rahul

1 Answer, 1 is accepted

Sort by
0
Pavlina
Telerik team
answered on 09 Dec 2009, 04:21 PM
Hello Rahul,

One option to achieve the desired functionality is to find horizontal scrollbar on the client and manually move the scroll.
You can use the following code snippet:
JavaScript:
var scroller = $get('<%= RadGrid1.ClientID %>' + "_Frozen"); 
scroller.scrollLeft = scroller.scrollLeft + 100;

I hope it gets you started properly.

Kind regards,
Pavlina
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Grid
Asked by
Rahul Khinvasara
Top achievements
Rank 1
Answers by
Pavlina
Telerik team
Share this question
or