My application uses 2 tabbed panes to display data (one has a table, the other has graphs). I have them synchronized so that when the user selects a tab in either pane the corresponding tab is automatically selected in the other pane thus keeping the tables and the graphs together in the user interface.
The problem I have not been able to solve is to apply the same concept when the user closes a tab in either pane. Otherwise, if the user closes(removes) a tab in the data table pane, the system should automatically remove the corresponding graph tab in the plots pane.
I have tried looking at the changeEvent but this does not tell me what the event that fired it was (either add, select, or remove). Has anyone done or tried this before with success?
Thanks.
The problem I have not been able to solve is to apply the same concept when the user closes a tab in either pane. Otherwise, if the user closes(removes) a tab in the data table pane, the system should automatically remove the corresponding graph tab in the plots pane.
I have tried looking at the changeEvent but this does not tell me what the event that fired it was (either add, select, or remove). Has anyone done or tried this before with success?
Thanks.
Comment