solved: scroll grid with buttons with jquery

Need jquery and jquery scrollTo plugin

Scroll up:
$list=$("#dhtmlxGridProducts.gridbox").find(“div”);
$list.scrollTo("-=100px",0,{axis:“y”});

Scroll down:
$list=$("#dhtmlxGridProducts.gridbox").find(“div”);
$list.scrollTo("-=100px",0,{axis:“y”});

Scroll left:
$list=$("#dhtmlxGridProducts.gridbox").find(“div”);
$list.scrollTo("-=100px",0,{axis:“x”});

Scroll right:
$list=$("#dhtmlxGridProducts.gridbox").find(“div”);
$list.scrollTo("+=100px",0,{axis:“x”});