function getMhsJob(){ /** STORES */ var ds_mhsjob = store_mhsjob(); /** FORM PEKERJAAN */ var fPekerjaan = { //new Ext.form.FormPanel({ xtype: 'panel', //'container', id: 'content.pekerjaan', //layout: 'hbox', layout: 'form', margin: '0 0 10', defaults: { labelWidth: 150, labelAlign: 'right' }, items: [{ xtype: 'fieldset', flex: 1, title: '', defaults: { labelWidth: 130, xtype: 'textfield', width: 570, labelAlign: 'right' }, items: [{ xtype: 'combo', id: 'cb.idjob-mhs', fieldLabel: 'Pekerjaan', width: 300, editable: false, //allowBlank: false, store: ds_mhsjob, triggerAction: 'all', valueField: 'id', displayField: 'nama', forceSelection: true, submitValue: true, mode: 'local', emptyText:'Pilih...', }, { id: 'tf.tpjob-mhs', fieldLabel: 'Nama Tempat Bekerja', },{ id: 'tf.alamatjob-mhs', fieldLabel: 'Alamat Tempat Bekerja', },{ id: 'tf.jabjob-mhs', fieldLabel: 'Jabatan', }] }] }; //); return fPekerjaan; }