Which control, used to dynamically switch content, includes support to code the Dynamic Content display using a Simple Action, client-side or server-side JavaScript?
A. Switch
B. Dynamic Content
C. Multi-image Output
D. Dynamic View Panel
Linda has an existing IBM LotusScript agent she would like to invoke from an XPage. Assuming the agent name is FRED, what should Linda add to her XPage to call the agent?
A. ag = database.getAgent("FRED");ag.RunOnServer(NoteID)
B. var agent=database.getAgent("FRED");agent.run(currentDocument.getDocument());
C. ag = database.getAgent("FRED");noteid = FREDSampleDoc.getDocument().getNoteID();ag.run(noteid)
D. ag = database.getAgent("Fred");noteid = FREDSampleDoc.getDocument().getNoteID();ag.xpRun(NoteID)
Slobo is working on a new XPages application. He has a requirement to use a Stylesheet (CSS). How would he use it on a XPage?
A. Add the Style Sheet to the NSF. In the XPage, insert at the top of the XPage
B. Add the Style Sheet to the NSF. In the XPage, insert at the top of the XPage:
C. Add the CSS stylesheet in the Resources/Style Sheets section. Using the Resources tab in the Properties view of the XPage that needs to usethe CSS classes, use the Add Resource button and choose Style Sheet from the drop-down menu of choices.
D. Add the CSS stylesheet in the Shared Elements/Style Sheets section. Using the Resources tab in the Properties view of the XPage that needsto use the CSS classes, use the Add Resource button and choose Style Sheet from the drop-down menu of choices.
What are the three different parts of the managed bean in the faces-config.xml file? (Choose three.)
A. Bean class
B. Bean name
C. Bean scope
D. Bean location
E. Bean property
F. Bean var name
Jen added an Application Layout control to the ccAppLayout custom control she is developing. To the titleBarTabs in the configuration she added three
A. For all the Customers XPages, set the showTabSelected property to "Customers Application".
B. For all the Customers XPages prefix the XPage name of with "Cust_" and set the selectedPrefix property to "Cust_" for the
C. For all the Customers XPages, prefix the XPage name of with "Cust_" and set the selected property to "Cust_*" for the
D. For all the Customers XPages, pass a navigation path string to the navigationPath property in the configuration and code the selectionproperty for the
Which control should Larry add to the left column area of an Application Layout to provide a menu selection interface that uses the "lotusSelected" style class to indicate that a menu choice was selected?
A.
B.
C.
D.
Ken has written an IBM LotusScript agent that updates existing documents with new data. However, after the agent runs, some of the documents are giving errors while users are working with them in the user interface. Some of the data that was added is not passing the field validation tests. What can Ken do to make sure the data he is adding to the documents is valid before he saves the changes?
A. Ken can add a call to the ValidateDocument method of the NotesDatabase class and verify that the return flag is True, indicating that there areno errors on the document prior to saving the document.
B. Ken can add a call to the ValidateDocument method of the NotesDatabase class and verify that the return flag is False, indicating that thereare no errors on the document prior to saving the document.
C. Ken can add a call to the ComputeWithForm method of the NotesDocument class and verify that the return flag is True, indicating that thereare no errors on the document prior to saving the document.
D. Ken can add a call to the ComputeWithForm method of the NotesDocument class and verify that the return flag is False, indicating that thereare no errors on the document prior to saving the document.
What is the size, in bytes, of the Long data type in IBM LotusScript?
A. 2
B. 4
C. 8
D. 16