PATH:
home
/
letacommog
/
letaweb
/
scripts
/
editor
/
ecommerce
/
customer
$.manage('ecommerce.customer.address', '', { popup_editor_name : 'customer_address', init : function() { var that = this; this.loadGrid( 'address_books', [ { display : t('LBL_USER_USER_ID'), name : 'id', width : 40, sortable : true, align : 'center', searchable : true, search_type : 'number' },{ display : t('LBL_USER_FIRST_NAME'), name : 'first_name', width : 50, sortable : true, align : 'left', searchable : true, },{ display : t('LBL_USER_LAST_NAME'), name : 'last_name', width : 50, sortable : true, align : 'left', searchable : true, }, { display : t('LBL_ADDRESS_ADDRESS'), name : 'address_1', width : 130, sortable : true, align : 'left', searchable : true, },{ display : t('LBL_ADDRESS_COUNTRY'), name : 'country_text', width : 100, sortable : true, align : 'left', searchable : true, },{ display : '', name : 'edit', type:'button', command:'edit', width : 10, align : 'left', }, { display : '', name : 'del', type:'button', command:'delete', width : 10, align : 'left', }], [ { name : t('LBL_SLIDESHOW_ADD_ITEM'), bclass : 'add', onpress: function() { that.openEditor(); } },{ name : t('LBL_USER_DELETE_USER'), bclass : 'delete', onpress : function(name, gDiv,bDiv) { var ids = this.grid.getSelectedId(); that.deleteItemss(ids); }, }] ); } });
[+]
..
[-] customer_group.js
[edit]
[-] customer.js
[edit]
[-] address.js
[edit]