implement « Datatable « JSF Q&A





1. A problem in h:dataTable implementation     stackoverflow.com

I am unable to get table values by using h:dataTable. Please reply? Bean class:-

 public class Employee implements Serializable{
        private int eId;
     ...

2. How to implement adjusting dynamicly dataTable's row number equal to user inputted/selected value in JSF page?    stackoverflow.com

How to implement adjusting dynamicly dataTable's row number equal to user inputted/selected value in a JSF page? The context is like this. There is a inputText component NumOfCars and a dataTable ...

3. How to implement DataTable where we can move the columns arround.    coderanch.com

Hi, I want to implement a functionality where my data is shown in a table. I need to have a sort functionality, pagination functionality and also provide a functionality where users can resize the columns, move arround the columns. Just like windows explorer where we can sort and also move arround the columns. Also need to keep user profiles i.e. next ...

4. A Very little problem in h:dataTable implementation    coderanch.com

Hi all! I'm having a bean class employee having attributes id,name along with public getters and setters. I'm using following bean for db connection and getting values from database table. TableBean.java: public class TableBean{ public Connection getVConnection() throws Exception{ String driver = "oracle.jdbc.driver.OracleDriver"; String url = "jdbc:oracle:thin:@localhost:1521:globldb3"; String username = "scott"; String password = "tiger"; Class.forName(driver); Connection conn = DriverManager.getConnection(url, username, ...