| Summary | Editing current occurrence: update day name |
| Queue | Kronolith |
| Queue Version | FRAMEWORK_3 |
| Type | Bug |
| State | Resolved |
| Priority | 1. Low |
| Owners | jan (at) horde (dot) org |
| Requester | patrick.abiven (at) apitech (dot) fr |
| Created | 06/01/2010 (5640 days ago) |
| Due | |
| Updated | 06/01/2010 (5640 days ago) |
| Assigned | 06/01/2010 (5640 days ago) |
| Resolved | 06/01/2010 (5640 days ago) |
| Github Issue Link | |
| Github Pull Request | |
| Milestone | |
| Patch | No |
State ⇒ Resolved
Update weekday (
Bug #9070).http://cvs.horde.org/diff.php/kronolith/templates/edit/javascript.inc?rt=horde&r1=1.32.10.8&r2=1.32.10.9&ty=u
updated correctly if I edit a recurring event.
from Tuesday June 1st to June 10th), the radio 'edit_recur' is
initially set to 'all' and the start_date shown is June 1st Tuesday.
When clicking the radio 'edit_recur' to 'current', the onclick
function changes the start_date to the current instance (for example
June 3th) but doesn't change the weekday Tuesday. This occurs because
the setStartDate function doesn't call updateWday().
Regards
Patrick
State ⇒ Feedback
correctly if I edit a recurring event.
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ Editing current occurrence: update day name
Queue ⇒ Kronolith
Milestone ⇒
Patch ⇒ No
State ⇒ Unconfirmed
When editing the current instance of a recurring event, the event
start date (day, month, year) is updated but not the name of day
(Monday, ...).
In templates/edit/javascript.inc, function setStartDate(), shouldn't
we call the updateWday on the start date ?
Regards
Patrick
..
$('start_year').value = startYear;
$('start_month').selectedIndex = startDate.getMonth();
$('start_day').selectedIndex = startDate.getDate() - 1;
+ updateWday('start_wday');
updateEndDate();