0
votes
1answer
20 views

Bootstrap load AJAX content in Inactive Tab

I'm building a site utilising Bootstrap tabs and AJAX. I've set it up so that when a link with the class of .load is clicked the content of that html document is loaded into the active tab, in this ...
0
votes
0answers
16 views

How do I stop a Bootstrap x-editable from updating an edited field when ajax call fails?

How do I stop a Bootstrap x-editable from updating an edited field when ajax call fails? I am passing a function as the url. $('.order-price').editable({ type: "text", title: "Order Price", ...
0
votes
1answer
34 views

Dynamically added Twitter Bootstrap popover with <br> does not break lines

I have a large paginated table. Each row shows a client with it's information. I use an AJAX call to check if there are notes for a client. If there is a note for a client an icon gets added. It is ...
0
votes
2answers
37 views

why does jQuery.load doesn't work for this page?

I have some inner html that needs to be inserted into a div which has the class modal-body like this: $(".modal-body").load("http://cistrome.org/finder/util/pure_meta?did=1660"); Though this page ...
0
votes
2answers
39 views

Twitter Bootstrap Typeahead with JSON REST

I am having trouble implementing the Twitter Bootstrap Typeahead feature with a JSON web Service. I have looked at all the examples on this website and can't find anything that will work. I know my ...
0
votes
0answers
34 views

How to set up jQuery pagination + Twitter Bootstrap for JSON data received by Ajax?

How to set up pagination when the data is not ready when page is loaded (because data received dynamically using ajax). There is a good answer and library to bind Twitter Bootstrap and jQuery ...
0
votes
1answer
24 views

Popover from the click of the content loaded via ajax

I have the code jQuery('a[rel=popover]').popover({ html: true, title: '', content: function() { ..... ..... } }).live('click', function(e) { e.preventDefault(); ...... ...... ...
0
votes
1answer
37 views

Twitter Bootstrap tab contant wont switch unless directed to page through AJAX

I am using the Bootstrap framework through out the entire site for the responsive design ability. I am also using AJAX calls to switch between every page. On one page I am using the Bootstrap tabs to ...
0
votes
1answer
22 views

Bootstrap Typeahead after ajax call

I am using typeahead for listing cities depend on country. I have to use ajax for this typeahead does not work with ajax call. Anyone have an idea? Here is my codes: $("#usercity").typeahead({ ...
1
vote
2answers
57 views

Bootstrap Scrollspy not working with AJAX loaded menu

I have a submenu that gets loaded via ajax. I'm trying to use Bootstraps scrollspy to highlight the submenu based on where the user is on the current page. However it doesn't work with my sub-menu. I ...
0
votes
1answer
52 views

Radio Buttons Alternating PHP Form Field Function with AJAX

Have Radio Buttons to Trigger Different PHP Functions.. At the moment though, the page just flashes when the submit button is clicked! IT SEEMS THE .PHP NEEDS TWEAKING!! Would like the functions to ...
0
votes
1answer
87 views

Jasny bootstrap fileupload image preview error

I'm using Jasny Bootstrap Fileupload and is working for the first submit. The problem: after a first submit working ok, the image preview doesn't work anymore. Steps to reproduce: 1. Select a photo. ...
0
votes
0answers
53 views

AJAX isEmail Check on Field Entry & Javascript Form Submit Disable/Enable

Using Twitter Bootstrap, have a form that lets the user submit a question to be answered publicly or privately. To enable the "Answer Publicly" submit-button, the len text field should != 0. To ...
0
votes
0answers
50 views

Twitter Boostrap tooltip on mouseenter event

To put you in situation, this is the problem: In my webapp I have a button that fires a boostrap popover and with the event 'show' of the popover makes an ajax call, p. e: $('#myModal').on('show', ...
1
vote
1answer
73 views

JavaScript incompatibilities issues with IE8

I am using jQuery as well as twitter bootstrap for my site. I am using a scroll spy, A carousel and an AJAX form submit. I have tested these in three browsers. They work in chrome and FF but not in ...
0
votes
2answers
52 views

Jquery event not getting fired

Im tring to fire an jquery click event on a button which gets loaded in a div through ajax but event does noy fire when i chik the buttons loded through ajax dash.php <!DOCTYPE html> ...
0
votes
1answer
80 views

Bootstrap - Clear selected file using jquery - data-dismiss?

So I have this div dedicated to being an image uploader. I have a div within that will show when a file is chosen. I also have <a> that I want to get rid of and just clear out the uploaded field ...
2
votes
1answer
90 views

bootstrap-switch functionality does not load when I re-render a partial with “respond_do”

I use bootstrap-switch and I've implemented it with bootstrap-switch-rails. Awesome feature, but I am having problems with its persistance when using an ajax response to render a partial with it. I ...
1
vote
1answer
147 views

bootstrap modal not working when i try to edit one record in firefox

I have a form in modal bootstrap where I edit a record. Works fine in chrome browser, but not working in firefox. What happens is that submit does not work in Firefox. Some idea about the problem? ...
1
vote
3answers
81 views

twitter bootstrap modal won't work on first call

I'm practicing with twitter bootsrap and made an example website. I use modal view to display warnings when users vote. But it won't display the warning when you vote first time. it displays second ...
0
votes
0answers
163 views

jQuery X-Editable: Update select field based on value of other select field

I am using the X-Editable plugin for jquery. I have two select fields that are dynamically supplied with data via ajax. This is my code: The fields: <td class="center"> <a href="#" ...
0
votes
2answers
56 views

Bootstrap modal is loaded even when form is not valid?

I have a bootstrap modal like this: <a href="#summaryModal" onclick="return generate_summary()" data-toggle="modal" style="color:white"><button type="submit" id="summarize_btn" class="btn ...
0
votes
2answers
160 views

Use Ajax to load/unload modal windows with Twitter Bootstrap

I'm using Bootstrap (Version 2.3.1) and I'm using Ajax to load in a modal window. Is there a way to remove the modal window from the DOM when I close the modal window? ...
0
votes
1answer
55 views

How to use DataTables with 100000 records?

because I`m using Twitter Bootstrap in my site therefor selected DataTables to display my data on the pages. is some cases i have more than 100K records and would like to show them as a 20 records per ...
1
vote
0answers
168 views

Devise with multiple models, bootstrap modal with ajax login

I have 2 kinds of users - nurses and patients, and want to setup login such that there are two buttons on the welcome/landing page which open up a bootstrap modal with the login form for each type of ...
0
votes
1answer
110 views

How can I prevent dropdown menu hide when clicking on a popover triggered from dropdown?

I have a popover triggered by a dropdown menu using the standard Twitter Bootstrap javascript components. Can you help me prevent the dropdown from closing while a user clicks on the popover? Here's ...
0
votes
0answers
94 views

Bootstrap CSS popover content

I am using the popover button from twitter bootstrap and I have a button called Chat. I am dynamically generating elements for the contents in the popover and my question is, how can I set the ...
0
votes
1answer
64 views

What makes the Bootstrap modal tall or wide?

I'm trying to use Jschr's Bootstrap-Modal fork to allow various sized modals. I cannot figure out why certain modals are taller, wider, or otherwise sized. Here's the documentation: ...
0
votes
2answers
63 views

jquery selector click not firing from dynamically generated button? [closed]

The following button is generated from an ajax success call (there are many of them): <a class="btn appDetails" href="#myModal" data-toggle="modal" role="button">' + data.Application_Name + ...
1
vote
0answers
104 views

bootstrap select2 results won't show on return

I'm trying to use bootstrap select2(ajax) in my custom joomla component but I don not get my data to be listed on return. The javscript looks as it follows jQuery("#e6").select2({ placeholder: ...
0
votes
2answers
45 views

Bootstrap popover for all elements in a column?

I'm dynamically generating a table via an ajax call and I'd like all the elements in a particular column to show a popover on hover. I have the following code in the success event: strBtn1 = ...
1
vote
2answers
338 views

MVC 4 Modal window, partial view and validation

I'm using MVC4 & Entity Framework to develop a web application. I have a table which enumerates all the persons I have in my DB. For each of them, I can edit their info throught a modal window ...
1
vote
3answers
221 views

MVC 4 Modal window and AJAX

I'm using MVC 4 and Entity Framework to develop an web app. I have a table which contains persons. There is also an Edit button which invokes a modal window and thanks to it, the user can edit a ...
0
votes
1answer
110 views

How to popup modal only when the Ajax function finish execution in bootstrap jquery?

I have a Ajax function like this: function generate_summary() { var summary_input=document.getElementById('summary_input').value; var ...
1
vote
1answer
590 views

MVC 4 Edit modal form using Bootstrap

I'm using MVC 4 and Entity Framework to develop an intranet web application. I have a list of persons which can be modify by an edit action. I wanted to make my app more dynamic by using modal forms. ...
0
votes
1answer
333 views

How to get Selected element in bootstrap dropdown, where dropdown is dynamically populated

This is similar to How to Display Selected Item in Bootstrap Button Dropdown Title Only difference, my dropdown list is not static and it is populated through ajax response. Below code doesn't work ...
0
votes
1answer
45 views

Modal form submitting multiple times

My bootstrap modal is submitting multiple times, it appears to be for the amount of times the modal has been opened. Code <script src="@Url.Content("~/Scripts/jquery.validate.min.js")" ...
0
votes
1answer
306 views

bootstrap tabs dynamic content

I'm making the transition to jquery 1.9 and using .on, In the past I've relied way too much on .live() and of course life was great, now things once again seem really complicated. I'm trying to ...
0
votes
1answer
178 views

jQuery and iFrame “ajax” image uploader not working correctly

I am using twitter bootsrap, and more specifically Jasny's file upload widget. http://jasny.github.io/bootstrap/javascript.html#fileupload I have to cater for older browsers so am using it in ...
0
votes
2answers
60 views

Prepend object using jquery and disappear

I am writing a javascript file using jquery in order to inject the input box on the html page. However, when I inject the input on the page and within a few second the input box disappear. I am ...
-1
votes
1answer
98 views

ajax jquery not working with bootstrap?

i am trying to convert my existing site with bootstrap but unfortulaty my old ajax code is notworking with bootstrap i have to add latest jquery file to run my ajax but in both conditions it is not ...
0
votes
1answer
91 views

Bootstrap popover with grails and ajax

just trying to use ajax formRemote in a BS popover. A simple form works, but the ajax implementation not: 1) gsp code <div id="addfolder"> <a href="#" class="btn" ...
0
votes
2answers
61 views

click event fires twice for button inside link

I'm using bootstrap to create the stacked pills nav control. Each entry in the control is a link, and that link element also contains a button. The button may be clicked to delete the list entry, or ...
1
vote
1answer
59 views

Json to Html using bootbox?

I am getting the following JSON value: [{ "employee_id" : 10, "name" : "george" }, { "employee_id" : 20, "name" : "luke" }, { "employee_id" : 30, ...
0
votes
0answers
143 views

AJAX 'Load More' using Twitter Bootstrap

I am creating an application and would like to load a list of movies brought in dynamically using the Rotten Tomatoes API based on a search query. Ideally, I would like to load the first 10 results, ...
0
votes
1answer
141 views

Ajax typeahead not working

I am pulling stock symbols from Yahoo finance in a json object and I am trying to show them as a drop-down menu while the user starts typing the name of the company or the symbol in the search box . ...
0
votes
1answer
37 views

Problems with Ajax/Javascript creating buttons dynamically [closed]

This is a javascript function I have to create buttons dynamically base on what is in a textfile during onload. The buttons cant seem to be created at all although it is able to read the file and I ...
0
votes
1answer
45 views

href to a modal and a function at the same time in bootstrap framework?

I have a form like this in html: <form class="well span9 offset1" action="/summary/" method="post"> {% csrf_token %} <fieldset> <label class="control-label" for ...
0
votes
2answers
97 views

Returning results for bootstrap typeahead?

im trying to return results for the bootstrap typeahead after doing an ajax request, but its not working however it does work when i don't initiate the ajax request. This does not work: ...
1
vote
1answer
451 views

Bootstrap modal email form

I've searched for an answer but could not find any. Maybe someone here can point me to the right direction. I have a simple modal form (bootstrap). It's meant to work like this. You enter the form ...

1 2 3 4