I know it is possible to call javascript function in ForeUI but I need to do the reverse
Javascript function call ForeUI Custom Event
Imagine a Do_Login custom event in ForeUI
<foreui>
Do_Login()
</foreui>
Now javascript to call the ForeUI Do_Login Custom Event
<script>
function UpdateLogin() {
{FOREUI.parent(Do_Login);
}
</script>
???
Is that possible?