On few places in our application we open ListPage in content area. On the address line there is something like "Company/Module/Folder". On that listpages are menuitems which calls class which create menuitem and open the new ListPage form like:
Args args = new Args();
str param = 'Something';
MenuFunction openProjects = new MenuFunction('ListPageName',MenuItemType::Display);
args.parm(param);
openProjects.run(args);
When it called like that the address degenerate to "Company/"
How to keep the location (at least when the same ListPage is just reopen with different parameters)?
*This post is locked for comments
I have the same question (0)