1.
Elizabeth is modifying the Customers composite application. She needs to add code to determine if the RecentOrders component can be repositioned. What is a function she could use for this purpose?
2.
Jeff is setting up his status XPage so that it displays graphical status indicators based on the data being displayed. He has not received the images from his customer yet. What can he do to continue developing the application while waiting for the images to be delivered?
3.
Percy has written a LotusScript agent that creates a vCard and attaches it to a selected Person record in the Domino directory. His agent runs to completion, but when he opens the document it does not have the vCard attached. Given the following LotusScript code, what is the cause of the problem?
Dim session As New NotesSession
Dim dbNAB As NotesDatabase
Dim docNAB As NotesDocument
Dim dcNAB As NotesDocumentCollection
Set dbNAB = session.CurrentDatabase
Set dcNAB=dbNAB.UnprocessedDocuments
Set docNAB = dcNAB.GetFirstDocument
Do While Not (docNAB Is Nothing)
Call docNAB.AttachVCard(docNAB)
Set docNAB = dcNAB.GetNextDocument(docNAB)
Loop
4.
Ignacio needs to enable rich-text editing in his web application. He would like to take advantage of the Dojo rich-text editing control available in XPages, but he needs to use it on a form instead. How can he do this task?
5.
Beatrice has been asked to modify three views in the projects database. All view fonts are currently set to 10 pt, and Beatrice needs to now set the font for the column titles and for the detail rows to be 8 pt. How can Beatrice accomplish this task?
6.
Tara is writing an agent that allows users to reset their password on their ID file from the ID vault. What method listed below would need to be used in the agent to accomplish this task?
7.
Ashley is writing a server-side script to process the request parameters that are passed in her Registration XPage. What global object should she use to access the parameters that she's interested in?
8.
Kimberly has added a submit button to her XPage. Before the document is saved, she wants to make sure that the user actually wants to save the document. What should she do to accomplish this task?
9.
Mike wants to add a delete button to his XPage so that the owner of the document can delete the document. In the following code, Mike wants to prompt the user to verify that the user wants to delete this document. What attribute and value can he use to complete the code?





 
10.
John wants to use Themes to help him define controls properties. He wants to use the OneUI theme but also extend it to be able to manage a different style for some buttons. How can he override the global theme properties for some of his buttons?