Avatar

Level 10

I do not follow how you select "Loser to A-D" given all teams may appear in the drop-down. I made changes to impact the drop-downs highlighted in green, below, particularly the exit event on form1.Page1.EightTeams.DropDownList4.

brackets.png

// form1.Page1.EightTeams.DropDownList4::exit - (JavaScript, client)

form1.Page1.EightTeams.DropDownList22.clearItems();

var i = 0;

if (form1.Page1.EightTeams.DropDownList4.selectedIndex == 0) {

  i = 1;

}

form1.Page1.EightTeams.DropDownList22.addItem(form1.Page1.EightTeams.DropDownList4.getDisplayItem(i));

Steve