Welcome Guest, Not a member yet? Register   Sign In
How to get single message for multiple objects?
#1

Hi,
I am using custom validation and i have 3 fields to check but a single message coming for all 3 fields but i want i single message for my custom validation.

Here are the functions

public function save_product()
{
$title=$this->input->post('title');
$category=$this->input->post('category');
$sub_category=$this->input->post('sub_category');
$occasion=$this->input->post('occasion');
$this->form_validation->set_rules('title', 'Title', 'required');
//$this->form_validation->set_rules('username', 'Username', 'callback_username_check');
$this->form_validation->set_rules('category', 'Category', 'callback_fields_check');
$this->form_validation->set_rules('sub_category', 'Sub Category', 'callback_fields_check');
$this->form_validation->set_rules('occasion', 'Occasion', 'callback_fields_check');


if ($this->form_validation->run() == FALSE)
{

$this->load->view('product_form');
}
else
{
$
$this->load->view('welcome_message');
}
}

public function fields_check()
{
$category=$this->input->post('category');
$sub_category=$this->input->post('sub_category');
$occasion=$this->input->post('occasion');
if($category=='' && $sub_category=='' && $occasion=='')
{
$this->form_validation->set_message('fields_check', 'Any of category , sub_category ,occasion fields must fill');
return FALSE;
}
else
{
return TRUE;
}
}
Please check and let me know if possible.
thanks
Reply


Messages In This Thread
How to get single message for multiple objects? - by Rajesh - 02-03-2015, 08:18 AM



Theme © iAndrew 2016 - Forum software by © MyBB