Hi Gilberto, Nothing changes if i add addControl(clearButton);
With Eclipse Debugger, the program pointer doesn't reach the onClear() method
that's why it doesn't work ...
If I change this line
ActionButton clearButton = new ActionButton("Effacer les critères", this,
"onClear");
by this one
Button clearButton = new Submit("Effacer les critères", this, "onClear");
it works !!! but finally i don't want to implement this solution in my case ...
Why this behavior ? Please help me !
