In xpages, is there anyway to have the choices for a radiogroup show in read mode? Of course all the choices show in edit mode, but only the selected radio button will show in read mode.
Subject: RE: Can you show a radiogroup or checkboxgroup values in read mode?
If you set up a radioGroup with its value bound to a scope variable & set that scope variable in the beforePageLoad event = your datasource’s field value, it will display all the radio buttons with the value selected in Read mode (at least it did for me anyway). I didn’t try this with a checkBoxGroup but imagine it would work the same way. This means you may need to have 2 radioGroups set up for the Read/Edit mode or handle setting your datasource’s field value to the resulting choice in the querySaveDocument event to store the chosen value on the document.