How to open Setting dialog programmatically? Permanently deleted user 创建于 2015年08月03日 10:52 Hi Team, How to open setting dialog focus on to "HTTP Proxy". What API should I use?Thanks,Navin
I'm interested in this as well. Previously I did this, which no longer works:
The OptionsEditor.KEY.getData() call now returns null.
Use ShowSettingsUtil.getInstance().showSettingsDialog(project, nameToSelect).
I think I tried to use that when I developed my previous code - the issue is I don't have a Project available. Can I pass null if I'm opening an ApplicationConfigurable?
Actually, I just tried this - it seems to work, and looking in the code it looks like the default project is used if null is passed.
Thank You.