Re: [tobago] Problem using paging in sheet under IE

2012-01-19 Thread Helmut Swaczinna
Hi Hani, yes, I can reproduce this. I think, that must be handled in Tobago. Please create a jira issue. Regards Helmut Am 18.01.2012 11:21, schrieb Abushammala, Hani (EXTERN: conceptQ): Hi Helmut, I have defined a sheet and a button with defaultCommand in page. By entering a row or page

Skip the Validation Phase of JSF with ExtVal

2012-01-19 Thread Igor Guimarães
Hello, Extval provide a way to skip of Validation Phase of processor? A have a button New, that puting a new itens on my list or create a new bean, but the property imediate jumping other phasses too (Update Model Values and Invoke Application), and its not applicable for me. Anybody has a

Re: Skip the Validation Phase of JSF with ExtVal

2012-01-19 Thread Rudy De Busscher
Hello Igor, There exists an add-on that can do that , see (1). Don't know how well it works with Bean validation, probably not due to the missing @SkipValidationSupport on bean validation annotations. Why is immediate=true not an option? The actionListener on the button is still executed

Re: Skip the Validation Phase of JSF with ExtVal

2012-01-19 Thread Gerhard Petracek
hi, bean-validation only works with groups - you have to use a different add-on. you can see an example at [1]. regards, gerhard [1] http://goo.gl/dM120 http://www.irian.at Your JSF/JavaEE powerhouse - JavaEE Consulting, Development and Courses in English and German Professional Support for

Can anybody share Trinidad Sample database application.

2012-01-19 Thread Ramesh Babu Ambati
Hi All, Can anybody share Trinidad Sample simple database application. Thanks, Rams ::DISCLAIMER:: --- The contents of this e-mail and any attachment(s) are confidential

Re: Skip the Validation Phase of JSF with ExtVal

2012-01-19 Thread Igor Guimarães
Gerhard, I have a questions, I need put the @BeanValidation(useGroups= at my BackingBean and entity, or only BackingBean it's necessary (my case, variant validation)? When I click on button, what the extension doing for skip of the validation phase? Thanks. Igor Guimarães. On Thu, Jan 19,

Re: Skip the Validation Phase of JSF with ExtVal

2012-01-19 Thread Gerhard Petracek
hi igor, the add-on just allows to use the extval annotation also with action(/-listener) methods. it resets the current groups and sets 'Bypass' as the current group. since 'Bypass' doesn't match a group you are using for constraints, no constraint gets validated. regards, gerhard