do anyone know how can I apply rule in Yii model for input must be greater than 0 value, without any custom approach ..
like :
public function rules()
{
    return array( 
        ....
        ....
            array('SalePrice', 'required', "on"=>"sale"),
        ....
        ....
    );
}
many thanks ..