Custom Query (7259 matches)
Results (70 - 72 of 7259)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#1901 | fixed | Datepicker v3.0 to include Java style date formats | ||
Description |
Hi there, How could I modify Datepicker to implement Java style (http://java.sun.com/javase/6/docs/api/java/text/DateFormat.html) date format (short, medium, long, full)? Please advise. Thank you. |
|||
#1903 | fixed | place shadow for elements of specific class | ||
Description |
Hello, I had problems with deactivating a shadow for a couple of elements: $(".exampleshadow").shadowDisable(); Only the shadow of the first element is disabled. I think this will fix it: $.fn.shadowEnable = function() { return this.each(function() { var cur = $(this); if(cur.next().is(".fx-shadow")) cur.next().show(); }); } $.fn.shadowDisable = function() { return this.each(function() { var cur = $(this); if(cur.next().is(".fx-shadow")) cur.next().hide(); }); } |
|||
#1904 | fixed | Calendar doesn't position well when used in position:fixed elements | ||
Description |
When attaching a calendar to an input placed inside a div whose position is set to "fixed", the popup calendar doesn't show up in the right position. The problem is that the calendar use the input's offset (relative to the viewport's top left corner) to compute its position while it should use an offset relative to the document's top left corner. Workaround: check whether a parent of the target input field has its position set to 'fixed'. If it is the case, then set the popup position to 'fixed' instead of 'absolute' Quick fix for ui.calendar: in the showFor method, line 313, replace if (!popUpCal._pos) { // position below input popUpCal._pos = popUpCal._findPos(input); popUpCal._pos[1] += input.offsetHeight; } inst._calendarDiv.css('position', (popUpCal._inDialog && $.blockUI ? 'static' : 'absolute')). css('left', popUpCal._pos[0] + 'px').css('top', popUpCal._pos[1] + 'px'); By if (!popUpCal._pos) { // position below input popUpCal._pos = popUpCal._findPos(input); popUpCal._pos[1] += input.offsetHeight; // Check whether the input is not inside a position:fixed div popUpCal._fixed = false $(input).parents().each(function() {popUpCal._fixed |= $(this).css('position') == 'fixed'}); } inst._calendarDiv.css('position', (popUpCal._inDialog && $.blockUI ? 'static' : (popUpCal._fixed ? 'fixed' : 'absolute'))). css('left', popUpCal._pos[0] + 'px').css('top', popUpCal._pos[1] + 'px'); |