Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How do I display different groups of properties on buttons in the property sheet the way Matisse does?

0
Posted

How do I display different groups of properties on buttons in the property sheet the way Matisse does?

0

This is only really useful if you have a lot of properties – and having lots of properties is usually not a great idea, as the user has to search for the things they want to change. Nonetheless, if you want to group different sets of properties on different buttons, it is quite simple. Node.PropertySet extends java.beans.FeatureDescriptor. It inherits the methods putValue (key, value) and getValue(key, value) which allow you to add ad-hoc key/value pairs to any PropertySet. What you do is pass a String with the text that should be on the button, assigned to the key “tabName”: somePropertySet.putValue (“tabName”, NbBundle.getMessage (getClass(), “KEY_Something”)); (the above code gets you a localized string – you can also pass a hard-coded one if you are sure your UI will never need to be translated). All PropertySets that have the same value will be included under the same button/tab in the property sheet. Can I bind one key to more than one action? The simple answer is no: The global

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123