scroll automatically on the right

hi,

how to scroll automatically on the right when i use split mode ?

webix.ready(function(){
			grid = webix.ui({
				container:"testA",
				view:"datatable",
				columns:[
					{ id:"rank",	header:"", css:"rank",  		width:50},
					{ id:"title",	header:"Film title",width:200},

					{ id:"2008_1", header:[{text:"2008", colspan:12}, "January"] },
					
					{ id:"2009_12", header:[null, "December"] },
				
					{ id:"year",	header:"Released" , width:80},
					{ id:"votes",	header:"Votes", 	width:100}
				],
				autoheight:true,
				data:small_wide_film_set
			});

Something like next may help

  ready:function(){
    this.scrollTo(500,0);
  },

http://webix.com/snippet/dcb4dd9b

exactly what I looked for, thank you