Hi All,
i am having two fields with min and max values. Following is my rule,
array('min','compare','compareAttribute'=>'max','operator' => '<=','allowEmpty'=>true),
array('max','compare','compareAttribute'=>'min','operator' => '>=','allowEmpty'=>true),
Everything works great, but the issue is
"If i enter max field as 5 and min field as 6",
it shows error, saying "Max should be greater than Min"
after correcting max field as "6", the message is still shown saying "Max should be greater than MIN".
The first shown error message is not going.
Can anyone help me in this issue??