Focal Point Banner


As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.

Join the TIBCO Community
TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.

  • From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
  • Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
  • Request access to the private WebFOCUS User Group (login required) to network with fellow members.

Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED]What are these?

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED]What are these?
 Login/Join
 
Guru
posted
When you add an Event in App Studio, it add these. Are these necessary or just examples?

 
var eventObject = event ? event : window.event;
var ctrl = eventObject.target ? eventObject.target : eventObject.srcElement;
 



 


//Begin function lnkDefaultDate_onclick
function lnkDefaultDate_onclick(event) {
var eventObject = event ? event : window.event;
var ctrl = eventObject.target ? eventObject.target : eventObject.srcElement;


} 

 

This message has been edited. Last edited by: <Emily McAllister>,


WebFOCUS 8.1.05
 
Posts: 496 | Registered: January 04, 2008Report This Post
Master
posted Hide Post
They are not needed most of the time. When a JavaScript event happens, a collection of information about the event is sent to the function. It is stored in the variable "event" that you see in parentheses.

Some of this information is extracted out for you in the two lines below the start of the function.

There are also functions packaged up in the "event" variable (Well, technically it's called an "object"). A few months ago I needed to call on one of these functions.

I had a situation where a user needed to pick a date range, but I needed to do a validity check on the range before the dates got sent to a FEX file. My validation happens when the user clicks a submit button.

So in the button's click event, if the date range is determined to be invalid, I use this code to stop the FEX from being called on:

  alert("Incomplete Discharge date range");
  event.stopImmediatePropagation();
  return;

The "stopImmediatePropagation" is a function that aborts the normal program flow that would result in the FEX file being called and working with a bad date range.


App Studio
WebFOCUS 8.1.05M
Windows, All Outputs
 
Posts: 594 | Location: Michigan | Registered: September 04, 2015Report This Post
Guru
posted Hide Post
Thanks for the explanation. I normally remove those and everything seems to work ok.


WebFOCUS 8.1.05
 
Posts: 496 | Registered: January 04, 2008Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED]What are these?

Copyright © 1996-2020 Information Builders