On one of projects that I'm working on, we decided to change our presentation of some data. Now we are using Netbeans ListView, and works great so far. But now we want to change/expand ListView to works like accordion. We can expand ListView to looks like accordion, but if we add buttons or text inputs to each cell/row we can't attach actionListener to that button. It seems like that ListView listeners are always on top of swing components.
Does anyone have any suggestions how to create accordion with using Netbeans Explorer API?
We could create custom Swing component which acts like that, actually there already exists one on the web. If we create one, we need to connect Lookup with our custom Swing component to works properly with Netbeans APIs. We want to do this only if there are no other options. Googling for such component which uses Netbeans APIs didn't give any useful results.