Matthew Broadhead

Results 69 comments of Matthew Broadhead

i use primefaces datatable for lazy loading. it would be nice to have in bootsfaces but there are no plans as far as i am aware

could you provide a short code example showing relevant portions of your xhtml and backing bean?

is the row deleted? have you tried adding a faces message using this method: ```java FacesContext.getCurrentInstance().addMessage(null, new FacesMessage(FacesMessage.SEVERITY_INFO, "The car has been deleted", null)); ``` i note that your growl...

could you post the full xhtml form? it is possible the `b:growl` is not positioned correctly in the form. maybe create a simple test form where a simple command button...

your `b:growl` component is in the loop of the `b:dataTable` so i imagine the html will create multiple growl components. try moving it to just below the `h:form` declaration

1. `p:messages` is outside the form. it should be inside the form to report messages which are relevant to the form 2. normally i would place a `b:modal` outside the...

You will need to provide a working example project which reproduces the problem otherwise it will be difficult for us to pinpoint the problem. You could use a maven archetype...

also in the demo the user has to define `label-small-screen="4" small-screen="8"` on every component which seems wasteful. this could be defined at the `b:formSection` level as a default and overridden...

@jepsar thanks. i didn't think to search the datatables.net website. those examples look like they would plug into a prime type lazy data model. we need to consider which attributes...