You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using GeoExt2 FormPanel to make wfs request by filter. My structure like this.
var formPanel = Ext.create('Ext.form.Panel', {
renderTo: "formpanel",
items: [{
xtype: "textfield",
name: "name__like",
value: "mont"
}, {
xtype: "textfield",
name: "elevation__ge",
value: "2000"
}]
});
When I create a filter, Wfs filter was generated like this "cond1 AND cond2 AND .." in wfs. I want to use AND and OR definition both of them. What should I do?
The text was updated successfully, but these errors were encountered:
logicalOp can take either 'OpenLayers.Filter.Logical.AND' or 'OpenLayers.Filter.Logical.OR' as it is documented here on the method which is used internally to create the filter.
I'm using GeoExt2 FormPanel to make wfs request by filter. My structure like this.
var formPanel = Ext.create('Ext.form.Panel', {
renderTo: "formpanel",
items: [{
xtype: "textfield",
name: "name__like",
value: "mont"
}, {
xtype: "textfield",
name: "elevation__ge",
value: "2000"
}]
});
When I create a filter, Wfs filter was generated like this "cond1 AND cond2 AND .." in wfs. I want to use AND and OR definition both of them. What should I do?
The text was updated successfully, but these errors were encountered: