admin管理员组文章数量:1344931
I'm have a bootstrap pop up box using this code.
<a class="btn btn-default" data-toggle="modal" data-target="#addModal"> test</a>
It is working without having any issue. Now I need to do the same(Appear the same pop up) when user double click on a table row which is in the same page. How can I do this?
I'm have a bootstrap pop up box using this code.
<a class="btn btn-default" data-toggle="modal" data-target="#addModal"> test</a>
It is working without having any issue. Now I need to do the same(Appear the same pop up) when user double click on a table row which is in the same page. How can I do this?
Share Improve this question asked Feb 7, 2015 at 13:54 Asanka HerathAsanka Herath 1,6213 gold badges20 silver badges36 bronze badges 3-
Element.addEventListener("dblclick" function(){ ...load bootstrap modal here... }, false)
Where element is your table row. – Mouser Commented Feb 7, 2015 at 13:55 - @Mouser- thank you for your answer. What do you mean by "...load bootstrap modal here..." section? – Asanka Herath Commented Feb 7, 2015 at 13:57
- Well you need to invoke the modal dialog there with code. Otherwise nothing happens when you double click on the table row. – Mouser Commented Feb 7, 2015 at 13:58
3 Answers
Reset to default 5Try this code:
$('tr').on('dblclick', function() {
$('#addModal').modal('show');
});
Since modal is already initialized by data attibutes on the button (data-target="#addModal"
), you just need to bind dblclick
event and show modal with .modal('show')
method.
Demo: http://plnkr.co/edit/J0SuQdy00dcf9baE7xJu?p=preview
This should work :) listen to double click and after that trigger modal manualy.
$('.table-row').on('dblclick', function(){
$('#addModal').modal('show')
});
Source: http://getbootstrap./javascript/#modals
Bind double click event on table row and fire 'show' of bootstrap modal in its callback.
It should be something like --
$('tr').dblclick(function(){
$('#addModal').modal('show');
})
本文标签: javascriptBootstrap popup when double click a table rowStack Overflow
版权声明:本文标题:javascript - Bootstrap popup when double click a table row - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743763495a2534815.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论