Hello
I have a dropdown list with a focus event:
public void ProjectDropDownGotFocus(Object args)
{
if (this.SelectedTime.ProjectId == Guid.Empty)
{
ProjectDropDown.ShowPopup();
}
}
In my development environment, this works when you tab into the field or when you click in the field.
After publishing (Azure Web App) the ShowPop fails to work when you click in the field. In fact you have to click 3 times before the dropdown list opens. It works as expected if you tab into the field.
Any ideas
Thanks