1 namespace('kivi.CustomDataExportDesigner', function(ns){
4 ns.enable_default_value = function() {
5 var count = $(this).prop('id').replace("default_value_type_", "");
6 var type = $(this).val();
7 $('#default_value_' + count).prop('disabled', (type === 'none') || (type === 'current_user_login'));
12 $('[id^="default_value_type_"]').change(kivi.CustomDataExportDesigner.enable_default_value);