Project

General

Profile

Feature proposal #4490

Updated by krileon about 10 years ago

Currently batchprocessing and filtering are done with custom tags. Implement a more generalized solution that'll allow custom expand/collapse usages. Example XML structure as follows. 

 <tools> 
 - 
   <tool name="filter" label="Search Tools" type="filter"> 
 - - 
     <field... 
 - 
   </tool> 
 - 
   <tool name="batch" label="Batch Tools" type="store"> 
 - - 
     <field... 
 - 
   </tool> 
 </tools> 

 The name would be the input control name. The label would be the button text. The type would determine the tool behavior. Filter type for example would add to the where statement. Store type for example would parse the input values to rows and run a store.

Back