mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
Make sure not to enable two radioitems when editing an item with recurrence set.
bug 287393, patch by jt@nerant.org, r=mvl
This commit is contained in:
parent
b83b23cb6b
commit
b4b1da73a3
@ -366,6 +366,27 @@ function menuListIndexOf(menuList, value)
|
||||
return -1; // not found
|
||||
}
|
||||
|
||||
function radioGroupSelectItem(radioGroupId, id)
|
||||
{
|
||||
var radioGroup = document.getElementById(radioGroupId);
|
||||
var index = radioGroupIndexOf(radioGroup, id);
|
||||
if (index != -1) {
|
||||
radioGroup.selectedIndex = index;
|
||||
} else {
|
||||
throw "radioGroupSelectItem: No such Element: "+id;
|
||||
}
|
||||
}
|
||||
|
||||
function radioGroupIndexOf(radioGroup, id)
|
||||
{
|
||||
var items = radioGroup.getElementsByTagName("radio");
|
||||
for each (item in items) {
|
||||
if (item.getAttribute("id") == id)
|
||||
return i;
|
||||
}
|
||||
return -1; // not found
|
||||
}
|
||||
|
||||
|
||||
function debug(text)
|
||||
{
|
||||
|
@ -328,13 +328,13 @@ function loadCalendarEventDialog()
|
||||
}
|
||||
|
||||
if (!theRule.isFinite) {
|
||||
setElementValue("repeat-forever-radio", true, "selected");
|
||||
radioGroupSelectItem("repeat-until-group", "repeat-forever-radio");
|
||||
} else {
|
||||
if (theRule.isByCount) {
|
||||
setElementValue("repeat-numberoftimes-radio", true, "selected");
|
||||
radioGroupSelectItem("repeat-until-group", "repeat-numberoftimes-radio");
|
||||
setElementValue("repeat-numberoftimes-textbox", theRule.count );
|
||||
} else {
|
||||
setElementValue("repeat-until-radio", true, "selected");
|
||||
radioGroupSelectItem("repeat-until-group", "repeat-until-radio");
|
||||
setElementValue("repeat-end-date-picker", theRule.endDate.jsDate);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user