Skip to content

Commit

Permalink
Item11028: JS date editor now picks up existing value
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk@12275 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
CrawfordCurrie authored and CrawfordCurrie committed Aug 8, 2011
1 parent 44cde59 commit 53e6832
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions EditRowPlugin/data/System/EditRowPlugin.txt
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,7 @@ Another great Foswiki extension from the <a style="text-decoration:none" href="h
| Copyright: | &copy; 2007-2011 Wind<nop>River Inc. |
| License: | [[http://www.gnu.org/licenses/gpl.html][GPL (Gnu General Public License)]] |
| Change History: | <!-- versions below in reverse order -->&nbsp; |
| 2.2.8 (8 Aug 2011) | Foswiki:Tasks/Item11028: JS date editor now picks up existing value |
| 2.2.7 (03 Aug 2011) | Foswiki:Tasks/Item11010: better default for editable cell width Foswiki:Tasks/Item11018: fixed date format in non-JS edit mode |
| 2.2.6 (18 Jul 2011) | Foswiki:Tasks/Item10982: fix crash when adding rows with date fields that have no default value |
| 2.2.5 (27 Jun 2011) | Foswiki:Tasks/Item10915: fix EDITCELL handling on save. Foswiki:Tasks/Item10922: abort save on clash with a synchronous edit by another user |
Expand Down
2 changes: 1 addition & 1 deletion EditRowPlugin/lib/Foswiki/Plugins/EditRowPlugin.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package Foswiki::Plugins::EditRowPlugin;
use strict;

our $VERSION = '$Rev$';
our $RELEASE = '2.2.7';
our $RELEASE = '2.2.8';
our $SHORTDESCRIPTION = 'Inline edit for tables';
our $NO_PREFS_IN_TOPIC = 1;

Expand Down
1 change: 1 addition & 0 deletions EditRowPlugin/pub/System/EditRowPlugin/erp_src.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
$(this).find('input').datepicker({
firstDay: 1,
dateFormat: $.datepicker.W3C,
defaultDate: original.revert.replace(/^\s+/, ''),
closeText: 'X',
onSelect: function(dateText) {
$(this).hide();
Expand Down

0 comments on commit 53e6832

Please sign in to comment.