"use strict";var KTAppsContactsListDatatable={init:function(){$("#kt_datatable").KTDatatable({data:{type:"remote",source:{read:{url:HOST_URL+"/api/datatables/demos/default.php"}},pageSize:10,serverPaging:!0,serverFiltering:!0,serverSorting:!0},layout:{scroll:!1,footer:!1},sortable:!0,pagination:!0,search:{input:$("#kt_subheader_search_form"),delay:400,key:"generalSearch"},columns:[{field:"RecordID",title:"#",sortable:"asc",width:40,type:"number",selector:!1,textAlign:"left",template:function(t){return''+t.RecordID+""}},{field:"OrderID",title:"Customer",width:250,template:function(t){var l=KTUtil.getRandomInt(1,10);return'
photo
'+t.CompanyAgent+'
'+t.CompanyEmail+"
"}},{field:"Country",title:"Country",template:function(t){var l="";return l+='
'+t.Country+"
",l+='
Code: '+t.ShipCountry+"
"}},{field:"ShipDate",title:"Ship Date",type:"date",format:"MM/DD/YYYY",template:function(t){var l="",e=KTUtil.getRandomInt(1,4);return l+='
'+t.ShipDate+"
",l+='
'+{1:{title:"Paid",class:" label-light-primary"},2:{title:"Approved",class:" label-light-danger"},3:{title:"Pending",class:" label-light-primary"},4:{title:"Rejected",class:" label-light-success"}}[e].title+"
"}},{field:"CompanyName",title:"Company Name",template:function(t){var l="";return l+='
'+t.CompanyName+"
"}},{field:"Status",title:"Status",template:function(t){var l={1:{title:"Pending",class:" label-light-primary"},2:{title:"Delivered",class:" label-light-danger"},3:{title:"Canceled",class:" label-light-primary"},4:{title:"Success",class:" label-light-success"},5:{title:"Info",class:" label-light-info"},6:{title:"Danger",class:" label-light-danger"},7:{title:"Warning",class:" label-light-warning"}};return''+l[t.Status].title+""}},{field:"Actions",title:"Actions",sortable:!1,width:130,overflow:"visible",autoHide:!1,template:function(){return' '}}]})}};jQuery(document).ready(function(){KTAppsContactsListDatatable.init()});