{
   head:[
      { width:70,  type:"dyn",   align:"right",  sort:"int", value:"Sales" },
      { width:150, type:"ed",    align:"left",   sort:"str", value:"Book Title" },
      { width:100, type:"ed",    align:"left",   sort:"str", value:"Author" },
      { width:80,  type:"price", align:"right",  sort:"str", value:"Price" },
      { width:80,  type:"ch",    align:"center", sort:"str", value:"In Store" },
      { width:80,  type:"co",    align:"left",   sort:"str", value:"Shipping",
        options:[
          { id:1, value:"Fast"},
          { id:2, value:"Slow"}
        ]}
   ],
   rows:[
       {  id:1001,
          data:[
               "100",
               "A Time to Kill",
               "John Grisham",
               "12.99",
               "1",
               "1"] },
       {  id:1002, 
          data:[
               "1000",
               "Blood and Smoke",
               "Stephen King",
               "0",
               "1",
               "1"] },
       {  id:1003, 
          data:[
               "-200",
               "The Rainmaker",
               "John Grisham",
               "7.99",
               "0",
               "2"] }
   ]
}