I am trying to use the bootstrap typehead plugin.
The idea is:
- I have a Manufacturer Option
- I Have a Model Option
- Only once the Manufacturer option is selected, the model option is enabled.
- The model option is filtered by manufacturers.
CakePHP Controller is sending me a 'findall' array of both Manufacturer and Models (Which I call Variety instead of Model for naming convention)
model_source = [];
$('#manufacturer').typeahead({
source: [
<?php
foreach($manufacturers as $manufacturer):
if($manufacturer['Manufacturer']['bow'] == true):
?>
"<?php echo $manufacturer['Manufacturer']['manufacturer']; ?>",
<?php
endif;
endforeach;
?>
]
});
$('#manufacturer').live("change", function(){
if($(this).val()){
$('#model').attr('disabled', false);
manufacturer = $(this).val();
<?php
foreach($varieties as $model):
if($model['Variety']['bow'] == true):
?>
model_source.push("<?php if($model['Variety']['manufacturer_id'] == "+manufacturer+"){echo $model['Variety']['model'];}else{ continue; } ?>");
<?php
endif;
endforeach;
?>
}else{
$('#model').attr('disabled', true);
}
});
The problem I am having is where I try to do
model_source.push("<?php if($model['Variety']['manufacturer_id'] == "+manufacturer+"){echo $model['Variety']['model'];}else{ continue; } ?>");
If I hardcode the manufacturer variable to be all in one line of PHP then it works (without the else statement, that is also giving me problems I get an ILEGAL error on my console)
Any idea in why when I concatenate the php string with the javascript variable it then doesn't work?!
http://jsfiddle.net/mmoscosa/Y6hEA/
Thank you!