Hey guys,
I'm not able to resolve the following problem:
db_table1 with columns value_dropdown1 and text_dropdown1
db_table2 with columns value_dropdown2 and text_dropdown2
db_table3 with columns value_dropdown3 and text_dropdown3 and value_dropdown1 and value_dropdown2
There are 3 Dropdowns:
First and Second: Dynamic data from DB_read on table1 and table2
Third: Dynamic data from AJAX loader and DB_Read on table3
The data for dropdown3 should depend on the selection made on dropdown1 and dropdown2.
I want to load all id_dropdown3=value_dropdown3 with matching id_dropdown1 AND id_dropdown2.
At the moment, I followed the tutorial How do I build a Double Drop-down in CFv5 and on the DB_read on table3 I've got the condition:
How can I integrate value_dropdown2?
Thanks for your patience!
I'm not able to resolve the following problem:
db_table1 with columns value_dropdown1 and text_dropdown1
db_table2 with columns value_dropdown2 and text_dropdown2
db_table3 with columns value_dropdown3 and text_dropdown3 and value_dropdown1 and value_dropdown2
There are 3 Dropdowns:
First and Second: Dynamic data from DB_read on table1 and table2
Third: Dynamic data from AJAX loader and DB_Read on table3
The data for dropdown3 should depend on the selection made on dropdown1 and dropdown2.
I want to load all id_dropdown3=value_dropdown3 with matching id_dropdown1 AND id_dropdown2.
At the moment, I followed the tutorial How do I build a Double Drop-down in CFv5 and on the DB_read on table3 I've got the condition:
<?php
return array( 'value_dropdown1' => $form->data['dropdown1']);
?>
How can I integrate value_dropdown2?
Thanks for your patience!