Hello,
I have a problem with filter sectcion on order listing page in backend.
I created a new filter with checkbox. When it is Checked then It filters a additional attribute1 and look if his value is 0 or 1 .... 1100.
How can i write a filter that can show me order bigger that 100 ??
my acctual code :
controller: Shopware.apps.Order.controller.Filter method: onAcceptFilters (i overwrite this method and add extra code:) :
var Filter = Ext.create('Ext.util.Filter',
{ property: 'attribute.attribute1', value: "1", anyMatch: true}
);
It only match to one value but how shouldk i creat filter to getall orders bigger than 100?
thanks!