Custom Query (7259 matches)
Results (121 - 123 of 7259)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#5648 | invalid | Dialog: [IE] Modal dialog's overlay in small RTL documents creates scrollbars | ||
Description |
Steps to reproduce
Notice that the overlay creates vertical scrollbar in the page. |
|||
#7495 | notabug | DatePicker in dialog causes Out of stack error. | ||
Description |
I have a datepicker on a dialog. To reproduce the problem.
d.datepicker._updateDatepicker(b) The date picker is a plane input control with thsi code on the dialog cshtml document $("#SessionDate").datepicker({ dateFormat: 'dd/mm/yy' }); The Dialog is defined like this on the main cshtml document $(function () { $('a.asessionCreate').live("click", function (event) { editDialog(this, event, '#DivForCallback', '#IdGivenToPostBackFormOnDialog); }); }); /* end document.ready() */ function editDialog(tag, event, target, formId) { event.preventDefault(); var $url = $(tag).attr('href'); var $title = $(tag).attr('title'); var $dialog = $('<div></div>'); $dialog.empty(); $dialog .load($url) .dialog({ autoOpen: false , title: $title , width: 500 , modal: true , minHeight: 200 , show: 'fade' , hide: 'fade' }); $dialog.dialog("option", "buttons", { "Cancel": function () { $(this).dialog("close"); $(this).empty(); } }); }; |
|||
#13002 | Slider does not work with Jaws | |||
Description |
With jqueryui version 1.11.2, the user is not able to change the slider value in the date time picker using the short cut keys(left and right arrow keys). The same was working with version 1.10.3. Issue is specific to Firefox. Working Scenario: https://jsfiddle.net/rtft6rff/ Non Working Scenario(with updated version) https://jsfiddle.net/rtft6rff/1/ Steps: Open dateTimePicker Focus on time Tab to the hour or minute slider Try to change the value using the left or right key |