globalThis.Kasbank = {
content: `
`,
action: function(){
setTimeout(function(){
document.getElementById('app-content-title').innerText = "Data Bank";
table('bank')
.title('Bank')
.equals(['kode'])
.createForm({
kode: {
form: 'input',
type: 'text',
placeholder: 'Inputkan Kode',
title: 'Kode'
},
keterangan: {
form: 'input',
type: 'text',
placeholder: 'Inputkan keterangan',
title: 'Keterangan'
},
rekening: {
form: 'input',
type: 'text',
placeholder: 'Inputkan rekening',
title: 'Rekening'
}
})
.row({
kode: 'Kode',
keterangan: 'Ketarangan',
rekening: 'Rekening'
})
.load()
})
}
}