JSF extending the UIInput does not invoke UPDATE_MODEL on the bean -
i have created custom components extendeds uiinput
, overwrites constructor , getfamily()
follows:
public htmlinputdatetime() { super(); setrenderertype(renderer_type); } @override public string getfamily() { return comp_family; }
the created appropriate renderer overwrites getendtexttorender
. problem although local value set , passed among requests (and value fetched model) never updates actual backing bean. hints why?
thanks
using jsf mojarra 2.2
when creatinf custom components (or forms in general) idea render h:messages
see if there validations failed.
as turns out component working fine since value date
failed conversion. after added <f:convertdatetime/>
, works fine.
Comments
Post a Comment