From 852cbcc6690cd94d46021437c1ebff63d26e7533 Mon Sep 17 00:00:00 2001 From: GenericUK Date: Wed, 5 Nov 2014 15:17:27 +0000 Subject: [PATCH] Profile select search field is disabled Fixes an issue in events online registration profile selector, on already saved profiles the search field is disabled by readonly attribute. --- js/view/crm.profile-selector.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/view/crm.profile-selector.js b/js/view/crm.profile-selector.js index befceec4ce..764c649bc4 100644 --- a/js/view/crm.profile-selector.js +++ b/js/view/crm.profile-selector.js @@ -101,7 +101,7 @@ } }, disableForm: function() { - this.$(':input', '.crm-profile-selector-preview-pane').prop('readOnly', true); + this.$(':input', '.crm-profile-selector-preview-pane').not('.select2-input').prop('readOnly', true); }, doEdit: function(e) { e.preventDefault(); -- 2.25.1