Re: New design live Community Center Meta DaniWeb by jwenting Primefaces has a good mobile variant. It's a JSF framework of course, but the ideas can be used for other platforms as well. Things like a menu that flows over the page as required and disappears when no longer needed or explicitly dismissed. primefaces delete data Programming Web Development by staffmbm I'm trying to make delete row function in primefaces datatable. I'm using this method: package logon; import java.…="#{logonTest.deleteAction(u)}" /> Row is deleted in primefaces datatable, but not in database. After restarting project deleted row… WebProject JPA+EJB+JSF+JBossAS7.1.1+Primefaces+Maven (troubles) Programming Software Development by zolymo … project, i only need list all my users using JSF+Primefaces (all dependecies included in pom.xml) and i use too… Prevent primefaces wizard from executing validation when using back button Programming Web Development by samantha2015 I have a primefaces wizard which contain a simple form and a datatable. On … Error while deploying web app on tomcat 7 Programming Web Development by techyworld …getNumberOfRowsToRender(DataTableRenderer.java:690) org.primefaces.component.datatable.DataTableRenderer.encodeTable(DataTableRenderer.java:562) org.primefaces.component.datatable.DataTableRenderer.encodeMarkup(DataTableRenderer….sun.com/jsf/facelets" xmlns:p="http://primefaces.prime.com.tr/ui"> <f:view… Is this possible? Programming Web Development by PythonNewbie2 … technologies and JSP with JSF 2.0 and Primefaces seems really cool. I'm new to all…create the web app I want withh JSP/JSF/Primefaces? Here's a basic description of the app:… ten points. Is this possible with JSP/JSF/Primefaces, or should I be looking elsewhere for a…I know I can build the UI easily with Primefaces. [B]What I'm not sure is if… Virtual DB in java. does it exists? Programming Software Development by techyworld … 7 tables which generates a java web application. (Spring,Jsf,primefaces,java) when the user login, only the data for that… the technologies am using to develop the apps? (Spring, JSF,primefaces, java) creating custom Unique key Exception Programming Software Development by karthikprs …://www.w3.org/1999/xhtml" xmlns:p="http://primefaces.org/ui" xmlns:f="http://java.sun.com… Change value or refresh dataTable Programming Web Development by hatebin … all ! 1. I'm developing a Database Web aplication with PrimeFaces, JSF frameworks. 2. I've allready implemented Managment Bean, Session… Passing parameter to Bean Programming Web Development by hatebin … ! I'm developing a WebApp using [this example](http://www.primefaces.org/showcase/ui/datatableRowSelectionByColumn.jsf) where I: 1. Connect to… Onload function Programming Web Development by pooran.c …://java.sun.com/jsf/facelets" xmlns:p="http://primefaces.org/ui"> <head> <meta http… Problem with JSF layout Programming Web Development by techyworld Hi i need some help on jsf/primefaces layout. i created 3 tabs, but the labels and text … JSF IF Statement Programming Web Development by techyworld Hi am new to jsf and primefaces. I have a drop down list which contain high,medium,low,other(please specify) When user select other(please specify), i want a textbox to be displayed. i guess there should be an if statement. anyone can help..i got no idea how to write an if statement in jsf. Thanks Selected value from dropdownlist Programming Web Development by techyworld … developing a java web application using jsf (front-end) and primefaces. I have a drop down list in my .xhtml page… NamedQuery not giving the good result Programming Software Development by techyworld … my query.Anyone can help on this? Platform used: Java, primefaces 4.0, Jsf 2.0 (hibernate,spring) public CartesianChartModel cars… JSF Components Programming Web Development by gtsiga … Iam working on some peice of code. I am using primefaces components and JSF backed beans. Here are a list of… JSF Components Programming Web Development by gtsiga …://xmlns.jcp.org/jsf/html" xmlns:p="http://primefaces.org/ui"> <h:head> <link… Re: JSP and Calendar View Programming Web Development by peter_budo You can either use [URL="http://primefaces.prime.com.tr/en/"]PrimeFaces[/URL] or Google for [URL="http://myfaces.apache.org/"]Apache MyFaces[/URL] any extension of MyFaces Re: Responsive Web Design Programming Web Development by jwenting Getting bootstrap to work with JSF is a lot of work. Better to use something like Primefaces which is a JSF implementation that has responsive design capabilities built in. I'm using it myself on some projects, looks great and works well http://www.primefaces.org/index Re: how to store audio in mysql in java using jsp and servlet. And how to retri Programming Web Development by jwenting … JSF (you want it instead of JSP anyway) and especially Primefaces which has audioplayer components. Other JSF libraries may have them… as well, but Primefaces is very good and pretty much accepted across the industry. Re: Populate Dropdown from DB - Performance Programming Web Development by jwenting … good thing to do would be to use JSF and Primefaces, which contains a very nice autocomplete component which will work… Re: New design live Community Center Meta DaniWeb by Dani … 30% mobile right from the start. I'll check out Primefaces tomorrow, err, today. Pulled an allnighter optimizing database queries here… Not able to update database with edited values (primefaces 3.4) Programming Web Development by nHulk **registerBean.java** public void onEdit(RowEditEvent event) { Connection con = null; PreparedStatement stat = null; ResultSet rs = null; try { Class.forName("com.mysql.jdbc.Driver").newInstance(); con = DriverManager.getConnection(&… Re: Not able to update database with edited values (primefaces 3.4) Programming Web Development by LastMitch >Am i going wrong some where here ..... this method is called to save the edited rows of datatable.... but database records are not getting updated.... Here is an example simliar to yours which cna update record from the database: http://stackoverflow.com/questions/12519999/datatable-incell-editing-how-to-update-database-with-edited-values Re: Error while deploying web app on tomcat 7 Programming Web Development by techyworld Problem solved. forgot to start Myeclipse Derby (virtual database) Re: Is this possible? Programming Web Development by ~s.o.s~ [quote]Users log in with their username and password (maybe I can somehow incorporate google OPENID)?[/quote] [URL="http://code.google.com/p/openid4java/"]OpenId4Java[/URL] (though I haven't used it personally) [quote]What I'm not sure is if JSP/JSF gives the ability to parse HTML at a certain URL to see if it contains words[/quote] I … Re: creating custom Unique key Exception Programming Software Development by JamesCherrill You can surround the code where that exception is thrown with a try { ...} catch, and catch the org.postgresql.util.PSQLException. In your catch block you can check the exact text of the Exception, and issue error messages or whatever. Re: Onload function Programming Web Development by lambing First of all, you don't need to use javascript to hide the logindiv upon load of the page. You may add a class "hide" or add an inline style to make the container hidden. I'm not sure why is the logindiv is hiding after an error is shown upon looking at your code. But you may try and call the showlogindiv() function after displaying the … Re: Passing parameter to Bean Programming Web Development by LastMitch >Problem begins when I download the records and click on the viewButton(no matter what record) it displays in a dialog only the first downloaded record. There's something wrong with your query in the **EntityBean** file because it's not displaying (fetching) correctly. Has nothing to do with your **JSP** file Re: Change value or refresh dataTable Programming Web Development by LastMitch **@hatebin** >Have anyone had such a problem and knows how to handle this or maby can give an advice. Thanks for any help. Try to provide a few files of code to look at. Read this it has something simliar to your issue: http://stackoverflow.com/questions/5946861/refresh-a-data-in-a-datatable-on-the-screenjsp