-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem when change "Status" filter #4
Comments
Thank you for the report. |
I also have this problem |
Replacing
by
in |
@gabriel-cardoso |
thanks @gabriel-cardoso tested it's ok with first change to the operator, the value box can be shown |
I also have this problem |
Hello // public/javascripts/application.js
function enableValues(field, indexes) {
var fieldId = field.replace('.', '_');
$('#tr_'+fieldId+' td.values select.value:not(.select2-container)').each(function(index) {
if ($.inArray(index, indexes) >= 0) {
$(this).removeAttr('disabled');
$(this).parents('span').first().show();
} else {
$(this).val('');
$(this).attr('disabled', true);
$(this).parents('span').first().hide(); // this set parent span display of select2 element to 'none'
}
if ($(this).hasClass('group')) {
$(this).addClass('open');
} else {
$(this).show();
}
});
} In order to understand the reason for this issue, you need to see the |
Hi,
When change the status filter, normally, there should be a field that appears when you change the value but it does not appear anymore.
Greetings.
The text was updated successfully, but these errors were encountered: