41 lines
940 B
JavaScript
41 lines
940 B
JavaScript
|
|
datatablePending.bootstrapTable({
|
|
url: "/",
|
|
showColumns: true,
|
|
showColumnsToggleAll: true,
|
|
showRefresh: true,
|
|
sortable: true,
|
|
search: true,
|
|
searchOnEnterKey: false,
|
|
searchHighlight: true,
|
|
pagination: true,
|
|
serverSide:true,
|
|
pageSize: 10,
|
|
pageList: [10, 20, 30, 40, 50, 100, 200],
|
|
cookie: true,
|
|
cookieIdTable: "table_rma_ssc_id",
|
|
icons: {
|
|
refresh: "fas fa-sync-alt", // atau ganti ke icon lain
|
|
columns: "fas fa-th-large"
|
|
},
|
|
|
|
columns: [
|
|
{
|
|
title: "Action",
|
|
},
|
|
{
|
|
title: "Nama Menu",
|
|
},
|
|
{
|
|
title: "Jenis Menu",
|
|
},
|
|
{
|
|
title: "Harga",
|
|
},
|
|
{
|
|
title: "Deskripsi",
|
|
},
|
|
|
|
],
|
|
});
|