I am new to jsf rich faces. I am using rich faces datatable
rich:datatable. On entering the value, values get filtered
in table. Now how can i get the value i selected in
backing bean?
Answer / madhu
Can anyone help me to find RichFaces interview questions?
| Is This Answer Correct ? | 1 Yes | 4 No |
What is a singleton in java?
How do I run a project in netbeans?
What is java lang noclassdeffounderror?
How do I find jre version?
What is transaction management in java?
public class Dog { private int weight; public int getweight(){ return weight; } public void SetWeight(int newWeight){ if (newWeight > 0){ weight = newWeight; } } } public class TestDog { public static void main(String[] args) { Dog d = new Dog(); System.out.println("Dog d's weight is " + d.getWeight()); d.setWeight(42); System.out.println("Dog d's weight is " + d.getWeight()); d.setweight(-42); System.out.println("Dog d's weight is " + d.getWeight()); } } class dog is compiled but there is an error in class TestDog when compiled and the error is with dot notations. I want to kmow why there is error in testdog class when compiled.
What are the risks in java security? : java security
What is a stream in java?
why java has the size of character 2 byte ,while in c/c++ it is of 1 byte?
What is the content reside in Use case Document?
What is flatmap java?
What is scrollable resultset in java?