On 12 June 2014 10:30, <[email protected]> wrote: > Hi, > > > 1. Is it possible to hide some properties in the list page only? I > mean While displaying list of domain objects, all its properties are > displayed as columns in the table. I want to display only important columns > and hide the remaining. > > Yes.
There doesn't seem to be a how-to for this, but it is mentioned on the reference page for @Hidden [1]. Basically you should use @Hidden(where=Where.ALL_TABLES) for those properties that you do *not* want to be rendered as columns. For parented (non-standalone) collections, @Hidden(where=Where.REFERENCES_PARENT) is also recommended. (Doesn't seem to be documented, will add). > 2. Instead of drop-down box populated with domain objects, I want to > display a table with the list of domain objects with radio button beside > each object to select one of the list. Is this possible in ISIS framework? > > No. That would require an enhancement to the ReferencePanel component. Currently this uses the third-party com.vaynberg.wicket.select2.Select2Field component to render the drop-down. If you can identify a Wicket component that produces the list similar to what you want, we could look to add the feature. HTH Dan > BR > Ranganath Varma > > [1] http://isis.apache.org/reference/recognized-annotations/Hidden.html > The information contained in this electronic message and any attachments > to this message are intended for the exclusive use of the addressee(s) and > may contain proprietary, confidential or privileged information. If you are > not the intended recipient, you should not disseminate, distribute or copy > this e-mail. Please notify the sender immediately and destroy all copies of > this message and any attachments. > > WARNING: Computer viruses can be transmitted via email. The recipient > should check this email and any attachments for the presence of viruses. > The company accepts no liability for any damage caused by any virus > transmitted by this email. > > www.wipro.com >
