Can't disable dropdown within its event handler

I removed all the code except for the disable line and the dropdown still will not disable when clicked. There are several buttons that DO disable properly inside their event handlers. If I add the disable, say, in any button handler, the dropdown disables properly.

export function selClass1_change(event) {
//Add your code for this event here:

$w('#selClass1').disable(); 

}