SolidSoft-Lda commented on issue #917:
URL: https://github.com/apache/royale-asjs/issues/917#issuecomment-708068920
After I bring the SearchFilter bead to my project, I found a fix or
workaround to this bug.
On SearchFilter.as, I added this on my side:
public override function set list(value:List):void
{
super.list = value;
COMPILE::JS
{
list.addEventListener(MouseEvent.CLICK, onListClick);
}
}
private function onListClick(event:MouseEvent):void
{
comboView.popUpVisible = false;
}
If is OK, I can commit it.
I started a discussion on mailing list.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]