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