Showing posts with label multiple checkbox. Show all posts
Showing posts with label multiple checkbox. Show all posts

Thursday, July 3, 2014

Cakephp add class in multiple checkbox and select box

$services_arr = array();
    foreach ($state_list as $key => $value) {
        $services_arr[$key]['name'] = $value;
        $services_arr[$key]['value'] = $key;
        $services_arr[$key]['class'] = 'validate[minCheckbox[1]]';
    }