admin管理员组文章数量:1426043
How can I prevent the default behavior of closing the x-editable input box when the focus changed to something else?.
My requirement is to keep the input box open until a click on the tick or cross button happens.
How can I prevent the default behavior of closing the x-editable input box when the focus changed to something else?.
My requirement is to keep the input box open until a click on the tick or cross button happens.
Share Improve this question asked Apr 22, 2017 at 9:11 Kanchana RandikaKanchana Randika 5462 gold badges13 silver badges27 bronze badges1 Answer
Reset to default 8 +50I believe you are looking for {onblur: "ignore"}
.
From the documentation:
Action when the user clicks outside the container. Can be
cancel|submit|ignore
.
Settingignore
allows having several containers open.
Please see this fiddle, or the below demo.
$(function() {
$.fn.editable.defaults.mode = 'inline';
$('#publicname-change').editable({ onblur:"ignore"})
});
<script src="https://ajax.googleapis./ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://netdna.bootstrapcdn./twitter-bootstrap/2.2.1/js/bootstrap.min.js"></script>
<script src="http://vitalets.github./x-editable/assets/x-editable/bootstrap-editable/js/bootstrap-editable.js"></script>
<link href="http://netdna.bootstrapcdn./twitter-bootstrap/2.2.1/css/bootstrap-bined.min.css" rel="stylesheet"/>
<link href="http://vitalets.github./x-editable/assets/x-editable/bootstrap-editable/css/bootstrap-editable.css" rel="stylesheet"/>
<div class="control-group control-group-inline">
<div class="controls">
<a href="#" id="publicname-change" class="editable editable-click inline-input">Mr.Rohith</a>
</div>
</div>
本文标签: javascriptXeditable prevent the default behavior of input box close on focus outStack Overflow
版权声明:本文标题:javascript - X-editable prevent the default behavior of input box close on focus out - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745407135a2657301.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论