I have a dataview object and when i try to load more of 200 images from the servlet using xml it is very slow. in several cases not it display the images on browser.
I need display more of 1000 images on this dataview object.
Does the dataview object has certain functions,such as enableSmartRendering ,enablePreRendering or enableDistributedParsing?
My Code
var dataView = new dhtmlXDataView({
container:“data_container”,
type:
{
template:“#message##imageid#”,
width:120,
height:175
},
drag:true,
select:“multiselect”
});
dataView.load(MyServlet);
any solution
thanks