Tagged Questions
0
votes
0answers
28 views
jQuery UI: modal dialog focus bug?
I am trying to create a modal dialog box that has a vertical scroll for content that overflows. For demo purposes, this dialog box contains an anchor and a bunch of divs (to overflow). Here is my ...
-3
votes
1answer
29 views
jQuery UI dialog open
I'm trying to open a dialog window from code. The internet says to use $("#dialog").dialog("open"); but for some reason this isn't working.
$( "#draggable" ).draggable({
connectToSortable: ...
0
votes
0answers
6 views
Buggy Aviary implementation within a JqueryUI dialog
I'm trying to use the Aviary photo editing library in a large web application.
When I implement the Aviary editor on any of the pages it works perfectly fine. When I implement it within a jQueryUI ...
0
votes
2answers
30 views
Autocomplete not working in Dialog
Hi I have an AutoComplete on an input field. It works fine when caled from a html view but when called using a Dialog, the dropdown list does not appears. The data appears in the dropdown if I use up ...
1
vote
1answer
31 views
Generating jQuery dialog buttons from an array of values
I'm trying to dynamically create a jQuery UI dialog with buttons derived from the array passed to the function, and then pass the key of the selected button to the next function on the button click, ...
1
vote
0answers
45 views
why does jquery dialog() auto height, width fail?
I am using some jquery pop up dialogure
var div = $('#mditem_temp');
var dlg = $(div).html(data).dialog({
height: 'auto',
width: 'auto',
...
0
votes
2answers
131 views
Jquery Validation Plugin not working in Jquery ui custom dialog box
I am using validate.js library given on this link http://jzaefferer.github.io/jquery-validation/jquery.validate.js to validate the text fields of pop-up form made using Jquery custom dialog box.
...
1
vote
2answers
87 views
JQuery Modal Dialog with drop-down list and textarea embedded
I'm new to jQuery so forgive me if this is an easy question.
I am trying to create a dialog box, from an onClick event, that comprises of:
1) A drop down list
2) A text area (height possibly 300px)
...
1
vote
1answer
54 views
Print Second set of values using function call in Jquery custom ui dialog
I am using a jquery custom dialog box to print a set of values on a webpage.User clicks on a button and enters a set of five values in a custom dialog box and then these values are printed on the ...
0
votes
1answer
43 views
get the current tab in jQuery UI tabs
I am using jQuery UI Tabs inside of the jQuery UI dialog window.
I've come across an instance, where I need to find the id of the current tab when clicking on one of the dialog buttons. Looking at ...
0
votes
1answer
126 views
How to print values inserted using a custom dialog box
I have made a custom jqury-Ui dialog box.I want the dialog box to be called 12 times i.e. it should take input of 12 values and each value should be printed in a different box.The boxes should be ...
0
votes
1answer
45 views
Force jQuery UI dialog to show scroll bars
I'm using jQuery UI dialog boxes on my site to show pop-up forms. The forms tend to be longer than the modal box, so there is vertical scrolling involved.
When I scroll with my trackpad or ...
0
votes
2answers
99 views
How to display Custom Dialog box on button click
I want my custom dialog box to load on button click but that's not happening.I am using the dialog box on this webpage.
http://jqueryui.com/dialog/#default
here is my code..
function click(){
...
0
votes
0answers
55 views
Jquery UI Dialog + .ajax()
I have a PHP page(grid.php) that is loaded in a main page via jquery.load (main.html) by way of menus.
That grid.php has a link that pops a jquery ui dialog. It has a dropdown box whose value i need ...
0
votes
1answer
31 views
jquery ui dialogue stacks
How can I stack dynamically generated ui dialogues on right corner of screen.
something like notify .Notify just adds text description and I need to display something like form in window.
Objective ...