how to use url attribute in horizontal list?

a horizontal list when trying to insert the data into the url property Should I set a value for the template?

view : "list",
type : "wide",
xCount : 5,
layout : "x",
type : {
        width : 200,
        height : 150
         }
,template : "<div>#text#</div> <div>#incre#</div><div> #cnt#</div> <div>#total#</div>",
url:"test.do"


data in test.do

{id : 1, text : "111", incre : "00.01%", total : "6,987",     cnt : "9,917,451",arr : 1}, 
		               {id : 2, text : "22",  incre : "00.02%", total : "6,987,451", cnt : "9917",     arr : 2  }, 
		               {id : 3, text : "333", incre : "00.03%", total : "6,987,451", cnt : "9917",     arr : 1 }, 
		               {id : 4, text : "444", incre : "00.04%", total : "6,987,451", cnt : "9917",     arr : 1}, 
		               {id : 5, text : "555", incre : "00.05%", total : "6,987,451", cnt : "9917",     arr : 2}

The above code is correct and has not any problems.

Similar snippet - http://webix.com/snippet/5e8159fe

Then how to use url attributy in list property ?

You are using the valid code

url:"test.do"

the test.do must be mapped to the some code that will output the json data

thank`s maksim!