sets the top (vertical resizing) or left (horizontal resizing) initial relative position of the 'resize' marker
var resizeStick = webix.ui.resizearea({
container:"box",
dir:"x",
start:240,
...
});
The code example below allows you to coincide the 'resize' marker and event positions:
var parentContainer = document.getElementById("resizeDiv");
webix.event(parentContainer,"mousedown",function(e){
res = webix.ui.resizearea({
container:parentContainer,
dir:"y",
eventPos:webix.html.pos(e).y,
height: 5,
start:webix.html.pos(e).y-webix.html.offset(parentContainer).y,
width: parentContainer.offsetWidth,
border: 1
});
})