Hi,
http://docs.webix.com/samples/26_carousel/01_init.html
does not show any images…
Hi,
http://docs.webix.com/samples/26_carousel/01_init.html
does not show any images…
Hi,
Thank you, the issue is already fixed and will be available as part of the next build.
when next build will be available?
Now I don’t have this information, but it will become more clear in a week.
is there a way to get fixing build earlier then next version? I know there is 2.0.5.
I am asking because I am building proof of concept and my hope that when I am done my client will approve buying your license.
Thank you
There exists a temporary solution.
You can redefine the $setSize function of a carousel, right in the webix_debug.js file.
$setSize:function(x,y){
var layout = this._layout;
var c = layout._cells.length;
var changed = webix.ui.view.prototype.$setSize.call(this,x,y);
var yc = this._content_height*(layout._vertical_orientation?c:1);
var xc = this._content_width*(layout._vertical_orientation?1:c);
if (changed){
this._contentobj.style.height = yc+"px";
this._contentobj.style.width = xc+"px";
layout.$setSize(xc,yc);
this._setScroll();
} else
layout.$setSize(xc,yc);
},
And link to the webix_debug.js in your app.