tabview add datatable paging error

    webix.ui({
    type:'stackedBar',
    rows:[
        {
            container:"areaA",
            view:"menu",
            id:'menu',
            url:'/ui/menu',
            type:{
                subsign:true
            }
        },
        {
            id:'tabList',
            view:'tabview',
            container:"tab",
            tabbar:{
                optionWidth:150,
                close:true
            },
            cells:[
                { header:"default", template:"My Tab 1 "}
            ]
        }
    ]
});

    var view = $$('tabList');
    view.addView(
        {
            body:{
                id:id,
                view:"datatable",
                //footer:true,
                columns:[
                    { id:"id", fillspace:true,css:"bet_id"},
                    
                ],
                tooltip:true,
                hover:"myhover",
                pager:{
                    template:"{common.first()} {common.prev()} {common.pages()} {common.next()} {common.last()}",
                    container:"paging_here",
                    size:10,
                    group:5
                },
                url:url
            }
        }
    );

error:Uncaught TypeError: Cannot read property ‘appendChild’ of null

In config of pager you have reference to HTML container

pager:{
                    template:"{common.first()} {common.prev()} {common.pages()} {common.next()} {common.last()}",
                    container:"paging_here",

Adding it to the page will fix the issue
http://webix.com/snippet/bbc5ae91

Or, instead of using an external container you can place a pager below the datatable

http://webix.com/snippet/f0226477