handling disabled case for checkboxes and radios.

This commit is contained in:
hyatt%netscape.com 2000-03-13 13:05:46 +00:00
Родитель d1539159d3
Коммит 24ed16214d
2 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -148,6 +148,11 @@ nsXULCheckboxElement::GetChecked(PRBool* aChecked)
NS_IMETHODIMP NS_IMETHODIMP
nsXULCheckboxElement::SetChecked(PRBool aChecked) nsXULCheckboxElement::SetChecked(PRBool aChecked)
{ {
PRBool disabled;
GetDisabled(&disabled);
if (disabled)
return NS_OK;
if(aChecked) if(aChecked)
mOuter->SetAttribute("checked", "true"); mOuter->SetAttribute("checked", "true");
else else

Просмотреть файл

@ -83,6 +83,11 @@ nsXULRadioGroupElement::GetSelectedItem(nsIDOMXULRadioElement** aResult)
NS_IMETHODIMP NS_IMETHODIMP
nsXULRadioGroupElement::SetSelectedItem(nsIDOMXULRadioElement* aItem) nsXULRadioGroupElement::SetSelectedItem(nsIDOMXULRadioElement* aItem)
{ {
PRBool disabled;
aItem->GetDisabled(&disabled);
if (disabled)
return NS_OK;
if (mSelectedItem) if (mSelectedItem)
mSelectedItem->SetChecked(PR_FALSE); mSelectedItem->SetChecked(PR_FALSE);
mSelectedItem = aItem; mSelectedItem = aItem;