We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5b8b44 commit 2cd6e6fCopy full SHA for 2cd6e6f
src/javaxt/express/ServiceRequest.java
@@ -1278,6 +1278,21 @@ public javaxt.utils.Value get(String col){
1278
}
1279
1280
1281
+ /** Used to remove an item from the filter
1282
+ */
1283
+ public void remove(String col){
1284
+ String key = col.toLowerCase();
1285
+ items.remove(key);
1286
+ }
1287
+
1288
1289
+ /** Used to remove all the items from the filter
1290
1291
+ public void removeAll(){
1292
+ items.clear();
1293
1294
1295
1296
/** Returns true if the filter is empty
1297
*/
1298
public boolean isEmpty(){
0 commit comments