1 /* vim: set expandtab sw=4 ts=4 sts=4: */
6 function show_hide_clauses(thisDropdown
)
8 // here, one span contains the label and the clause dropdown
9 // and we have one span for ON DELETE and one for ON UPDATE
11 if (thisDropdown
.val() != '') {
12 thisDropdown
.parent().next('span').show().next('span').show();
14 thisDropdown
.parent().next('span').hide().next('span').hide();
18 $(document
).ready(function() {
20 $('.referenced_column_dropdown').each(function(index
, one_dropdown
) {
21 show_hide_clauses($(one_dropdown
));
24 $('.referenced_column_dropdown').change(function() {
25 show_hide_clauses($(this));