How to remove toolwindow id ?
Hi,
I have a toolwindow with id as "Cloud" and it has 2 tabs with name "Devices" and "DumpProperties".
Currently it is showing like this:-

I want to remove the id getting displayed here.But when i removed it from the plugin.xml,
the id displayed in the sidebar while opening it (given in the following pic) is also getting removed

The id in the sidebar should retain.Is there a solution for this?Please advise
Please sign in to leave a comment.
Please advice since i am in an urgent phase.
You should setup tool window component like this:
toolWindow.getComponent().putClientProperty(ToolWindowContentUi.HIDE_ID_LABEL, Boolean.TRUE);
Hi,
I have changed the code like this:-
Oh, sorry! This part of API is tricky and not friendly at all, sorry! Line order matters here and actually it works with String value "true", not Boolean value. Please rewrite your code like this:
@Vassiliy It worked.Thanks for the help. :)