Custom Query (7259 matches)
Results (112 - 114 of 7259)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#1899 | worksforme | datepicker - bug in november | ||
Description |
The day "3" is showing twice on the calendar, as saturday and sunday. |
|||
#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(); }); } |
Note: See TracQuery
for help on using queries.