I want to pass parameters from primefaces sheet column to jsf backing bean like below.
<pe:sheetcolumn headerText="HTS Chapter" value="#{material.htsChapter}" colWidth="100"
rendered="true"
colType="dropdown"
readonlyCell="#{!itemActionsManagedBean.authCheckForEditForHtsChapter(material.country)}"
selectItems="#{itemActionsManagedBean.getMapItemsForHtsChapter(material.country)}"/>
I can pass parameters via readonlyCell attribute. But with selecitems it doesnt pass parameters to backing bean. Its always passing null for selectitems. My scope is @ViewScoped.
JSF: 2.2.1, PrimeFaces: 12.0.0, PrimeFaces Extensions: 12.0.5