mmncd
mmncd
Portion of the xhtml: ```xml ``` Portion of the backing bean: ```java public void deleteCar(Car car) { carRepository.delete(car); cars.remove(car); FacesMessages.info("Info", "The car has been deleted"); } ```
Yes, the row is deleted. I have tried your suggestion, but it continues not showing the message. Maybe the fact that in the same view there are models avoids to...
The full xhtml form is the following: ```xml ```
I have edited the xhtml form, and now I can see the messages. But, I continue with two problems: 1.- When an Ajax event occurs the searching and pagination of...
I implement the recommendations you gave me, but it continues dissapearing the searching and pagination of the datatable, and the searching of the columns does not work neither.
With the destroy table method, the database remains with the researching, but not with the pagination. Moreover, it is not updated with the deleted row. As opposed to without this...