Janet uses Domino Designer's Dynamic Help feature to clarify something. What kind of help will she get?
A. An animated, talking icon that offers to assist her.
B. A wizard that follows a support tree to narrow down the answer to her question.
C. A personalized search interface that remembers all of her previous searches and their results.
D. A context-sensitive help view that constantly updates a list of possible relevant topics based on what she's doing.
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?
A. param
B. header
C. cookie
D. requestScope
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?
A. You cannot override any property of a specific control.
B. He has to change the Style attribute of his button.
C. He needs to specify one theme file.
D. He can use the option
Kaitlyn has been asked to track which browser versions people are using to access the Customers XPage. She wants to add code that writes the browser version to the server log whenever a user opens the XPage. What server-side code can Kaitlyn add to do this task?
A. Add this code in the beforePageLoad event of the XPage: var req = facesContext.getExternalContext().getRequest();print(req.getHeader("User-Agent"));
B. Add this code in the onLoad event of the XPage: var req = facesContext.getExternalContext().getRequest();print(req.get(HTTP_USER_AGENT));
C. Add this code in the onLoad event of the XPage:print(headerValues.getHeader(HTTP_USER_AGENT));
D. Add this code in the beforePageLoad event of the XPage:print(headerValues.getHeader("User- Agent"));
Sheldon has created an XPage for a grocery application that once submitted will redirect the user to the confirmation XPage. Which method of the context object can Sheldon use to perform the redirect?
A. setRedirect(page:string)
B. redirectToPage(page:string)
C. redirectToXPage(page:string)
D. setXPageRedirect(page:string)
Renee is developing the Product Support Contact XPage. When a product manager enters the name of a support technician, the page is submitted and a lookup is done to try and populate the technician's e-mail address and phone number on the XPage. If there is no e-mail or phone number found, then messages should display to inform the product manager that the E-mail and Phone fields must be entered. On the XPages tab in the Application properties, the Client Validation check box is unchecked.
What steps can Renee take to provide the needed validation messages on the XPage?
A. Drag a Display Errors control from the core controls palette onto the XPage.
B. Drag a Server Validation control from the core controls palette onto the XPage and select the names of the fields needing validation.
C. On the XPages tab in the Application properties, click to select Client Validation. Drag a Display Errors control from the core controls paletteonto the XPage.
D. On the XPages tab in the Application properties, click to select Server-side Validation. Drag a Display Errors control from the core controlspalette onto the XPage.
Farah has added the main.css style sheet to her XPage. She wants to associate the helpText class from main.css with the lblHelp Label control on the page. How can Farah do this task?
A. Select the Source tab from the Xpage canvas, and enter this line:
B. Right-click lblHelp from the XPage. On the HTML tab of the Properties window, enter helpText for the Class option.
C. Select the lblHelp control on the Xpage. From the Style tab of the Properties window, enter helpText for the Class option.Click here to inputoption.
D. Select the Source tab from the Xpage canvas. Locate the
Jennifer has to get the IP address of the user who is accessing her Reporting XPage. This information is stored in a CGI variable. What global object can she use to access the IP address and all other CGI variables contained in the incoming request?
A. cookie
B. paramValues
C. facesContext
D. headerValues
Arthur wants to change the look of his entire XPages application. What can he do to accomplish this task?
A. Create a theme and apply appropriate style information, then change the Application's Default theme on the Basics tab of the Applicationproperties.
B. Create a theme and apply appropriate style information, then change the Application's Default theme on the XPages tab of the Applicationproperties.Click here to input option.
C. Create a Style Sheet resource and apply appropriate style information, then change the Application's Default style sheet on the XPages tabof the Application properties.Click here to input option.
D. Create a Style Sheet resource and apply appropriate style information, then change the Application's Default style sheet on the Basics tab ofthe Application properties.Click here to input option.
Sean is trying to use an XPage application, and he needs to fill some fields located in the XPage. Even if he clicks the edit button located at the bottom of the page, the XPage is not switched into edit mode.
What can be the cause of this behavior?
A. The rights assigned to Sean are Author rather than Editor.
B. The OnClick Event of the button does not have "Edit" associated with "Change Document Mode" in the "Document Mode" field.
C. The OnClick Event of the button does not have "Auto Edit" associated with "Change Document Mode" in the "Document Mode" field.
D. Sean needs to access the XPage application as "Manager" set in the ACL of the database, which is the only user-level right that allows theediting of documents.