[DE] Fix form settings for empty placeholder
This commit is contained in:
parent
278e09a741
commit
2ef290c53f
|
@ -4284,8 +4284,9 @@ define([
|
||||||
}
|
}
|
||||||
if (specProps) {
|
if (specProps) {
|
||||||
if (isForm){ // for dropdown and combobox form control always add placeholder item
|
if (isForm){ // for dropdown and combobox form control always add placeholder item
|
||||||
|
var text = props.get_PlaceholderText();
|
||||||
menu.addItem(new Common.UI.MenuItem({
|
menu.addItem(new Common.UI.MenuItem({
|
||||||
caption : props.get_PlaceholderText(),
|
caption : (text.trim()!=='') ? text : this.txtEmpty,
|
||||||
value : '',
|
value : '',
|
||||||
template : _.template([
|
template : _.template([
|
||||||
'<a id="<%= id %>" tabindex="-1" type="menuitem" style="<% if (options.value=="") { %> opacity: 0.6 <% } %>">',
|
'<a id="<%= id %>" tabindex="-1" type="menuitem" style="<% if (options.value=="") { %> opacity: 0.6 <% } %>">',
|
||||||
|
|
Loading…
Reference in a new issue