не селен в js
$(' .btn-stock')
type="submit"
идет отправка формы, надо отменить стандартное действие, что бы что-то произошло.$('.btn-stock').click( function(e){
e.preventDefault();
xtype: 'modx-combo',
fieldLabel: _('teaching_res_title'),
name: 'resource_id',
displayField: 'pagetitle',
hiddenName: 'resource_id',
valueField: 'id',
fields: ['pagetitle','id'],
pageSize: 20,
url: MODx.config.connector_url,
baseParams:{
action: 'resource/getlist'
},
typeAhead: true,
editable: true,
anchor: '99%',
},{
$arr = array(
[0] => 1;Изделие из золота №001;1325;1235;15
[1] => 2;Изделие из золота №002;1425;1425;15
[2] => 3;Изделие из золота №003;1300;1100;0
);
$newarr = [];
foreach ($arr as $item) {
$item = explode(';' , $item)
$arritem = [];
list ($arritem['ID'] , $arritem['NAME'] , $arritem['PRICE'] , $arritem['DISCOUNT_PRICE'] , $arritem['AMOUNT']) = $item;
$newarr[] = $arritem;
}