Add some padding space at end of datatable??

Add some padding space at end of datatable??

Hello @webix_B_123 ,
Could you please elaborate on the padding you need to add inside or outside?
If you need to add padding on the outside this can be done by wrapping the datatable in layout and adding padding property:

webix.ui({
    view:"layout",
    padding:{ 
     bottom:7
    },
    rows:[
   { view:"datatable", autoConfig:true, data:grid_data }
    ]
});

Please take a look at the snippet:
https://snippet.webix.com/sqxa6r1o

Thanks for reply.
I need padding space inside grid here, how can we make this?

anything possible using CSS??