I'm opening dialog from a backing bean like this:
Map options = new HashMap(); options.put("resizable", true); options.put("width", 1400); options.put("contentWidth", "100%"); options.put("height", 800);
options.put("minimizable", true);
options.put("maximizable", true);
PrimeFaces.current().dialog().openDynamic("pageName", options, null);
How can I set the dialog id?
I tried to put it like an option, but it didn't help:
options.put("id", "someId");
My Primefaces version is 6.2