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

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -