- $("input[name='query-selector']").click(function () {
- var query_val = $("input[name='query-selector']:checked").val();
- if (query_val === 'simple') {
- $('div.form-group-simple').removeClass('hidden');
- $('div.form-group-structured').addClass('hidden');
- $('.form-group-structured').find('input:text').val('');
- } else if (query_val === 'structured') {
- console.log('here');
- $('div.form-group-simple').addClass('hidden');
- $('div.form-group-structured').removeClass('hidden');
- $('.form-group-simple').find('input:text').val('');
- }
+ $('input#option_bounded').on('change', function () {
+ $('input[name=bounded]')
+ .val($('input#option_bounded')
+ .prop('checked') ? '1' : '');
+ });
+
+ $('input#option_dedupe').on('change', function () {
+ $('input[name=dedupe]')
+ .val($('input#option_dedupe')
+ .prop('checked') ? '' : '0');
+ });
+
+ $('input[data-api-param]').on('change', function (e) {
+ $('input[name=' + $(e.target).data('api-param') + ']').val(e.target.value);