datatable - scroll bars not showing up

Hi
I’m new to webix and trying out datatable- the scrollbars are not coming up by default and also the table doesnt seem to wrap to window. Here’s the code snippet…

http://webix.com/snippet/8f0a157e

Hello,

Scrollbars are coming by default. Try removing autoheight/autowidth properties from your configuration: http://webix.com/snippet/b3119d5b

There also exists a number of properties that help you control row and column sizes. By default they feature a fized sizing (100px for columns).

These samples may as well help you:

Thanks for the help, it worked.
Also I have set editable to true - that setting also doesn’t seem to take effect. Can you please suggest how to fix it?

Hello,

If you want to set the grid editable, setting the editable setting to true is not enough.

You should also specify which editor should be used for this or that column:

columns:[
       {id:"title", fillspace:true, editor:"text"},
       {id:"year", editor:"select", options:["1957", "1964", "1966", "1972", "1974", "1994"]},
     
     ], 

http://webix.com/snippet/76339f61

Optionally, you can specify the editaction (click by default).

Documentation: http://docs.webix.com/desktop__editing.html