Hi Isomorphic,
trying to replace a SelectItem with setMultiple with MultiComboBoxItem I found that MultiComboBoxItem does not respect setOptionOperationId.
Please see this SmartClient sample based testcase (all of v10.1p_2017-11-17, v11.1p_2017-11-17, SNAPSHOT_v12.0d_2017-11-16):
Working, Operation fetch<testOperationId> in Developer Console:
Not working, Operation fetch (without <testOperationId>) in Developer Console:
I think I reported the same issue for ComboBoxItem a long time ago, but can't find the respective post.
Best regards
Blama
trying to replace a SelectItem with setMultiple with MultiComboBoxItem I found that MultiComboBoxItem does not respect setOptionOperationId.
Please see this SmartClient sample based testcase (all of v10.1p_2017-11-17, v11.1p_2017-11-17, SNAPSHOT_v12.0d_2017-11-16):
Working, Operation fetch<testOperationId> in Developer Console:
Code:
{ name:"itemId", title:"Item", editorType:"ComboBoxItem", optionDataSource:"StockItem", optionOperationId: "testOperationId", valueField:"id", displayField:"description" },
Code:
{ name:"itemId", title:"Item", editorType:"[B]MultiComboBoxItem[/B]", optionDataSource:"StockItem", optionOperationId: "testOperationId", valueField:"id", displayField:"description" },
Best regards
Blama
Comment