-
Notifications
You must be signed in to change notification settings - Fork 16
Description
Dear Sirs,
I need to solve a problem I am faceing since 1 month:
my WAR app is based on net.BootsFaces 1.1.3 (it is a Maven/EJB/JSF2 project) that works fine when I deploy it on "Red Hat JBoss Enterprise Application Platform - Version 7.0.0.GA" (dev)
when I deploy my WAR App to "IBM WebSphere AppServer 9.0.0" (prod) all is fine; but when I try to remove an item from a datatable (by clicking a remove b:commandButton) I always need to do it twice:
- the first time nothing happens (neither on page, not on SystemOut.log, nor on javascript console.log)
- the second time I click the remove button the item is correctly removed from the model List and the partial view (the datatable) gets updated accordingly (and all log messages are correctly written to log files)
I investigate, without any success
I Attach here my project source (.zip) - the page where the datatable is defined is:
- saveToET.xhtml that is included in the areaLavoro.xhtml (and the button that fires the event is the one in the 'modal', combined with a hidden b:commandButton)
- its model being 'it.perfexia.webasc.pagecontrollers.AreaLavoroPage'
NOTICE that the pom.xml declares a local system dependency (the one in the 'deps/' folder)
NOTICE, also, that the WAR app declares a SQLServer schema as a JPA datasource (pls, try to isolate the problematic page in order You do not need to create such schema)

The pane/tab where the problem occurs is the "Estrazione Reperti" one (see figures below)
My intent is to:
- click the 'minus' azure button of the datatable item
- open a modal for confirmation, while a BlockUI obscures and disable the page)
- click the 'Elimina' button, that fires both the BolckUI and the Model removeTag() method
- finally, have the datatable element removed, the Model List reduced by one element, and a success message displayed to the upper zone of the page
NOTICE: in order to add an item to the databale in the "Reperti" pane:
- select a word form the textarea and right-click to assign it as a value to the four input-texts
- then, click the 'plus' ( + ) azure button

Is there some issue of incompatibility when I use BF with BIM WAS9? (it uses MyFaces implementation of JSF2 by defaut)
How can i solve this strange behavior?
