{% endfor %}
@@ -224,6 +224,34 @@
return false;
});
+ $('select.thumbtitle', container).bind('change', function(){
+ if($(this).val() == '') {
+ return;
+ }
+
+ var id = $(this).attr('name').split('_').pop();
+ var business = $('input[name="business_' + id + '"]');
+
+ if(business.attr('checked')) {
+ $(this).val('0');
+ alert('{% trans 'A field can not be set both as title and business field. Remove business field flag before setting title' %}');
+ }
+ });
+
+ $('input.business', container).bind('change', function(){
+ if(!$(this).attr('checked')) {
+ return;
+ }
+
+ var id = $(this).attr('name').split('_').pop();
+ var thumbtitle = $('select[name="thumbtitle_' + id + '"]');
+
+ if(thumbtitle.val() != '0') {
+ $(this).removeAttr('checked');
+ alert('{% trans 'A field can not be set both as title and business field. Remove the title before setting the business flag' %}');
+ }
+ });
+
$("#field_chooser").autocomplete({
source: "/admin/description/metadatas/search/",
minLength: 2,