I have successfully got the Checkbox input to function, but when the post comes back the checkboxs aren't check with the values I have selected, they are all unchecked.
protected function defaultParamValues()
{
$case_subtype = CaseModel::select('case_subtype')->groupBy('case_subtype')->get();
return array(
"case_subtype" => $case_subtype->toArray()
);
}
protected function bindParamsToInputs()
{
return array(
"case_subtype" => 'case_subtype'
);
}
in the view blade..
CheckBoxList::create(array(
"name"=>"case_subtype",
"dataStore"=>$data->dataStore("data2"),
"dataBind"=>"case_subtype"
));