All Questions
Tagged with jquery-ui-dialog jquery-ui-datepicker
19 questions
2
votes
1
answer
64
views
Datepicker on jQuery UI dialog fails on second opening of dialog
I have a static page with a link that opens a modal Dialog that loads a sub-page. The sub-page includes an input with a Datepicker widget.
When I first open the Dialog, the sub-page loads and the ...
0
votes
1
answer
809
views
Jquery ui datepicker not working properly in second Dialog
i'd appreciate your help with this one. I've been searching for a fix for hours now and I just can't get it to work.
I have two files "editor.php" and "functions.php".
So I got this Jquery UI ...
0
votes
0
answers
268
views
jQueryUI Datepicker on Dialog: OK on window scroll, not OK on dialog scroll
I have the following example here http://jsfiddle.net/209t0drp/
where a datepicker is used on a dialog.
Both, the page and the dialog, have a scroll.
Using some examples here on stackoverflow, I ...
0
votes
3
answers
1k
views
Show jQuery date picker in jQuerymodal dialog
There seems to be a problem with showing datepicker in modal dialog.
I'm using:
$(".dpicker").datepicker({
numberOfMonths: 2,
dateFormat: 'd M yy',
showButtonPanel: true
...
1
vote
1
answer
2k
views
Dynamic minDate and maxDate for jQuery ui datepicker
I have multiple links that trigger a dialog which shows the date picker. Each date picker has date range based on data-attributes. My problem is the date picker only show range from the first link you ...
0
votes
1
answer
622
views
Jquery datepicker load and open correctly but not change date value
I am developing a web based application with MVC razor and i'm using Jquery datepicker a couple date field now datepicker load and open correctly but not change date value.i'm calling a partial view ...
1
vote
0
answers
455
views
Issue with jQuery UI Datepicker inside jQuery UI Modal dialog
jQuery 1.7.2
jQuery UI 1.8.18
I have a jQuery UI Modal Dialog that contains a jQuery UI Datepicker. This is a pop up editor we are using with our app. The first time the user pops up the editor ...
0
votes
1
answer
6k
views
jQueryUI DatePicker Validation
I am trying to validate the date fields so when you if you select a date in the future and in the second input box you select today's date it should not let you submit the form.
I have it working so ...
0
votes
3
answers
217
views
trouble in getting dynamic id`s for datepicker
i want to generate a dynamic id of my datepicker. below jquery function shows the datetimepicker as the id is defined as static.
$(function () {
var dates = $("#...
1
vote
2
answers
2k
views
jquery functions not working within an ajax loaded jquery tab
I'm having trouble getting jquery functions (datepicker and dialog) to work within an jquery ajax loaded tab.
I keep getting a "datepicker is not a function" or "dialog is not a function" when I ...
0
votes
1
answer
3k
views
Calling JQuery datepicker hide() from custom button, calendar reopens in IE
I have a JQuery dialog that has two textboxes associated with Jquery date pickers, which are used to accept a date range.
I have added a custom button to the Jquery datepicker, called "Save". Problem ...
0
votes
1
answer
424
views
jQuery render datepicker and text underneath in a dialog box
I am trying to create a dialog box in jQuery, inside the dialog box I want to render datepicker and then some text underneath. I have the following code:
<div id="dialog">
<p>Delivery ...
0
votes
1
answer
543
views
Using jQuery .dialog() and .datepicker() with z-index
Trying to load .datepicker() inside a .dialog()
I'm doing this, but it doesn't seem to come up at all in the dialog:
$(document).ready(function(){
$("#ui-datepicker-div").css("z-index","9999 !...
1
vote
1
answer
2k
views
jQueryUI Datepicker in Dialog auto focus in IE9
I'm able to load and reopen jQueryUI Dialogs with a Datepicker as the first element in all browsers I've tried ... except IE 9.
If a Datepicker is the first element to receive focus when the Dialog ...
2
votes
2
answers
5k
views
Issue with JQuery Date Picker in Modal Window
I created a modal form/window using with the code:
$(function () {
var widthLen = window.screen.width - 10;
var heightLen = window.screen.height - 120;
$("#dialogOperation"...