rendered question - command link works then does not

2006-12-22 Thread support
I have a command link that is only rendered if a property is set in the back end bean. When I click the button it is supposed to add a row to a database. When the page is first rendered the [Add] button appears, I enter info into the inputText boxes and click [Add] and the information gets

Re: rendered question - command link works then does not

2006-12-22 Thread Volker Weber
Are you sure there is no validation/conversion error? This is the most frequently reason fo not invoking actions. add a h:messages tag to you page ensure this. Regards, Volker 2006/12/22, support [EMAIL PROTECTED]: I have a command link that is only rendered if a property is set in the

Re: rendered question - command link works then does not

2006-12-22 Thread Mike Kienenberger
The other common situation is that your rendering condition is based on request-scoped data. The rendering condition value must remain constant between the response when the button is rendered, and the next request when the button is processes. Ie, if uicommand rendered=#{bean.condition}, then