Hello,
Using (v8.2p_2012-07-30/PowerEdition Deployment 2012-07-30)
I have the following SelectItem:
This is a selectitem with dropdown listgrid with filter editor above the header columns. If I type something in the filter field I get the following DSRequest being logged:
As you can see it is not using the supplied operationID 'myOperId'.
Am I misinterpreting this API ? I kind of want the filter be of the same operation Id as the one set by f.setOptionOperationId(). Is this a bug?
Using (v8.2p_2012-07-30/PowerEdition Deployment 2012-07-30)
I have the following SelectItem:
Code:
SelectItem f = new SelectItem("participants_id","Examendeelname"); f.setOptionOperationId("myOperId"); DSRequest r = new DSRequest(); r.setOperationId("myOperId"); r.setDataSource("Exam_participants_Student"); f.setOptionFilterContext(r); f.setPickListFields( new ListGridField("firstname", studentMessages.firstname()), new ListGridField("structureName", structureMessages.structureName()) ); ListGrid listGrid = new ListGrid(); listGrid.setShowFilterEditor(true); listGrid.setFilterOnKeypress(true); f.setPickListProperties(listGrid);
Code:
=== DEBUG RPCManager - Request #1 (DSRequest) payload: { criteria:{ structureName:"fd" }, operationConfig:{ dataSource:"Exam_participants_Student", operationType:"fetch", textMatchStyle:"substring" }, startRow:0, endRow:75, sortBy:[ "surname" ], componentId:"isc_PickListMenu_7", appID:"builtinApplication", operation:"Exam_participants_Student_fetch", oldValues:{ structureName:"fd" } }
Am I misinterpreting this API ? I kind of want the filter be of the same operation Id as the one set by f.setOptionOperationId(). Is this a bug?
Comment