0
I would like when the menu is presented the "Option 1" starts selected, something like an html Selected
<p:selectManyMenu id="basic" value="#{selectManyView.selectedOptions}">
<f:selectItem itemLabel="Option 1" itemValue="1" />
<f:selectItem itemLabel="Option 2" itemValue="2" />
<f:selectItem itemLabel="Option 3" itemValue="3" />
</p:selectManyMenu>
It did not work, it returns the items in the list normally but is not selected
– Mateus