admin管理员组文章数量:1345197
I am trying to show a default value when a field is null or empty (string), and edit mode is disabled using x-editable. Using the attribute "data-value" works great when the field or string is null, for example:
<b><a id="location_name" data-type="text" data-title="Location name" data-placeholder="Location" data-emptytext="Location" data-value="Location">@Model.geoLocation.location_name</a></b> <br />
However, if the string is empty (but not null), the data-value will not show. I was wondering if there is a way to still show the default data-value if the string is empty (i.e., in addition to when it is null).
I am trying to show a default value when a field is null or empty (string), and edit mode is disabled using x-editable. Using the attribute "data-value" works great when the field or string is null, for example:
<b><a id="location_name" data-type="text" data-title="Location name" data-placeholder="Location" data-emptytext="Location" data-value="Location">@Model.geoLocation.location_name</a></b> <br />
However, if the string is empty (but not null), the data-value will not show. I was wondering if there is a way to still show the default data-value if the string is empty (i.e., in addition to when it is null).
Share Improve this question asked Dec 6, 2013 at 1:26 gnychisgnychis 7,58519 gold badges81 silver badges117 bronze badges3 Answers
Reset to default 8This works for me:
<script type="text/javascript">
$(document).ready(function() {
$.fn.editable.defaults.mode = 'popup';
$('.confirm_assistance').editable({
url: '<?php echo PATH; ?>controllers/administrator/insert/boardingListPax.php',
emptytext: 'Text for empty/null value'
});
});
</script>
The thing here is to use
emptytext: 'Text for empty/null value'
I am just using || inside the a tag.
<a href="#" editable-text="user.name">{{ user.name || 'empty' }}</a>
Also if you want to edit the emptytext all of the inputs you can do this.
$.fn.editable.defaults.emptytext = 'Text for empty/null value';
$.fn.editable.defaults.emptytext = '{{ 'Text for empty/null value' | trans | escape('js') }}';
本文标签: javascriptxeditablehow to show specific value when string is emptyStack Overflow
版权声明:本文标题:javascript - x-editable, how to show specific value when string is empty? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743807389a2542428.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论