Hi, I'm trying to add a Validator to a Palette. The Idea is to check something related to List of selected Items.
I tryied to make something like this: Palette<Account> palete = new Palette<Account>(......); palette.getRecorderComponent().add(new myValidator()); I hoped that Recorder<Account> expected a IValidator<List<Account>> on add method, but it receives an IValidator<Object>. How can I make some validations over selected items of palette? What can I expect when I getValue() of validatable param? Regards Tito
