Hello,
My problem is similar to other related post but i want to pass “variable” not “Entity”.
i have filtered a value from table and stored it into a variable “target” now i want to pass this variable to screen2 and use “target” value for other tasks related to screen2.
I know openEditor method but it is for Entity
public Window.Editor openEditor(String windowAlias, Entity item, WindowManager.OpenType openType, Map<String, Object> params) {
WindowInfo windowInfo = windowConfig.getWindowInfo(windowAlias);
return window.getWindowManager().openEditor(windowInfo, item, openType, params);
}
So please suggest me some solution.
Thanks