We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following filter codes would generate extra blank option in the dropdown field. It is a common problem with angular and the option tag.
See: http://stackoverflow.com/questions/15488181/angularjs-extra-blank-option-added-using-ng-repeat-in-select-tag?lq=1
.filters([ nga.field('success_status_search', 'choice').label('Status') .choices([{value:'1', label:'Sent'}, {value:'0', label:'Failed'}]) ])
The temporarily solution is to use CSS to hide the empty field.
select option:empty { display:none }
The text was updated successfully, but these errors were encountered:
Hide empty option in choice field
74a841c
Closes #382
fzaninotto
Successfully merging a pull request may close this issue.
The following filter codes would generate extra blank option in the dropdown field.
It is a common problem with angular and the option tag.
See:
http://stackoverflow.com/questions/15488181/angularjs-extra-blank-option-added-using-ng-repeat-in-select-tag?lq=1
The temporarily solution is to use CSS to hide the empty field.
The text was updated successfully, but these errors were encountered: