moveView

moves a view to a new position and updates its sizes

void moveView(string|number id,object pos);
id
string|numberthe id of a view pos
objectan object with new view position

Example

webix.ui({
    view:"gridlayout", 
    id:"grid",
    gridColumns:4, gridRows:3,
    cells:[
        { id:"a", template:"Single", x:0, y:0, dx:1, dy:1 }
        // more cells       
    ]
});
 
$$("grid").moveView("a", { x:0, y:0, dx:2, dy:2 });

Related samples

Details

A new configuration object of a view has the following attributes:

See also
  • API
  • Articles
  • Back to top
    Join Our Forum
    We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.