Questions tagged [bootstrap-confirmation]

17 questions
3
votes
1 answer

bootstrap confirmation is not working in partial view

I am working in one project with ASP.NET MVC having bootstrap, jquery and I have one main page inside that I have bind one partial view. I have used bootstrap.confirmation in my application and it is working fine in all the main pages but when I try…
1
vote
1 answer

Enable/Disable Bootstrap-confirmation on a button based on condition

This is the problem I’m currently having. I have a form with a text field and a dropzone for uploading files. Basically what I’m trying to accomplish is that when the user submits the form if the user does not add any files to the dropzone, I want…
Carlos Sosa
  • 445
  • 1
  • 5
  • 19
1
vote
0 answers

Simple module not working - property * does not exist on type 'JQuery'

I am tried write custom module to this confirmation-plugin . And during compiling ts, throw exception Property confirmation does not exist on type 'JQuery' . This is my code blocks: -ts.config { "include": ["./app/Resources/public/ts/*"…
0
votes
0 answers

Bootstrap confirmation is not working inside onClick event?

I have a button & I want to add bootstrap confirmation this is working fine when I'm calling directly but When I'm using confirmation code inside onClick Event this then Bootsrap Confirmation is not working. What is wrong here? This is my…
Rohit Verma
  • 3,657
  • 7
  • 37
  • 75
0
votes
0 answers

Ajax popup list in jQuery

I need something like Bootstrap Editable or Bootstrap Confirmation. But I'm not getting the actual thing that I need. I need an ajax response when clicked on a button like this, Here the text will be loaded through ajax and show the content in the…
0
votes
0 answers

Asp.net - Bootstrap confirmation - FullCalendar => singleton weird behavior

I' trying to implement Bootstrap confirmation on top of FullCalendar the code posted below works for basically everything except when I set "singleton" to "true"
0
votes
1 answer

Bootstrap Confirmation Canceling Confirmation On Click

I am trying like this. My goal is cancel confirmation and alert information. var item = $('[data-toggle=confirmation]'); item.on('confirmed.bs.confirmation', function(e,v) { if(everyThingIsOkey){ go event ... } …
0
votes
2 answers

bootstrap multiple data-toggle on delete button?

I have a bootstrap delete button, to get popover on it I'm using bootstrap-confirmation.js. and now trying to use a tooltip on it but tooltip not working because of confirmation js. please anyone have a solution for this? This is my button
Sam
  • 195
  • 1
  • 18
0
votes
3 answers

Why bootstrap-confirmation on datatable fire server side code without clicking

I've a bootstrap project, I use datatables pluging. And I want to add confirmation before delete a row. I can do it properly when I fill the table first with repeater and linkButton. But I want now, just send infomations what I need. Then I try to…
0
votes
2 answers

Bootstrap confirmation requires two clicks before shows up?

var myJSON = { "customers": [{ "id": 100, "first": "Mike", "last": "Johnson", "email": "mjohnson@gmail.com", "position": "Consultant" }, { "id": 101, "first": "John", "last":…
0
votes
2 answers

Removed space between spaces buttons in a bootstrap dialog

I'm developing a web app with Bootstrap 3.3.7 and Bootstrap Confirmation 2.4.1. The confirmation works well, but when I press the button (Delete) that contains the Confirmation, it removes some space between the Delete and the Close button as you…
0
votes
1 answer

Bootstrap confirmation icon not showing

I created a bootstrap confirmation for my link: And the…
0
votes
2 answers

PreventDefault in bootstrap confirmation doesn't work

When I use this code: $(function() { $('#enableBtn{!! $zone->id !!}').on('confirmed.bs.confirmation', '', function () { e.preventDefault(); // Do Ajax Here var ZoneId = 1; …
Claudio Ferraro
  • 4,551
  • 6
  • 43
  • 78
0
votes
1 answer

close bootstrap confirmation when clicking anywhere outside of it

I am using the bootstrap confirmation plugin. I am attempting to close all confirmations if a click occurs anywhere outside of the confirmation. unfornately it is closing all the time on any click. $('html').on('mouseup', function(e) { if…
Bryan Dellinger
  • 4,724
  • 7
  • 33
  • 79
0
votes
1 answer

HREF not copied to ok button - Bootstrap Confirmation

I'm trying to get bootstrap-confirmation.js to work for a delete dialog. The problem I'm having is I can't get it to copy the href to the ok button. It always just puts "#" as the href. Here's my code:
Phil
  • 21
  • 3
1
2