The idea is to set for different objects, from one model, different validators.
The Validatos are saved in the DB and it have to get them somehow in the rules() method but for this i need a dynamic ID, which I've to set in the Controller (like in the example)
Is there a possibility to do this or should I search for an other way?
EDIT:
I've done it with a static variable and function… works now, thank you!
Since your validators are dynamic, you may also consider writing a method-based validator. Then refer to CModel::createValidators() to create the validators on-the-fly in the validation method. In this method, $this would refer to the object being validated.