just i tried to show my data table with animation so i done below coding but not working please

Function aniss(divid,series:string);Javascript;

just i tried to show my values in animated type"flip" but error showing “r is not null” why?

   var col1={margin:5,rows:[
       {
           view:"pager",
           id:"pagerA",
       animate:{
                      type:"flip"
               },
                       size:8,
                       group:5
                     },
                   {
                   view:"datatable",
                 //  autoConfig:true,
                 //  resizeColumn:true,
                  //  scrollY:true,
                //   id:'data',

                   // data:series,
                    columns:[
                         { id:'VENDOR', header:'VENDOR', width:100, sort:'string'},
                         { id:'DATE', header:'DATE', width:120, sort:'string'},
                          { id:'Q', header:'QUANTITY', width:100 },
                          { id:'Fa', header:'FAILURE', width:100 },
                          { id:'FP', header:'FPMO', width:100 }
                          ],
                          pager:"pagerA",
                          select:true,
                          autowidth:true,
                         // height:285,
                          data:series
                           },

                            ]};

                   webix.ui({
                        container:"divid",
                       // margin:5,
                        cols:col1
                          });

You have cols:col1, where col1 is object. But value of cols must be an array of objects.
Just change your code as

webix.ui({
    cols:[ col1 ]
});

http://webix.com/snippet/37414777