Michael has designed a mobile application with two mobile pages. For the first mobile page he set the pageName property to "page1" and for the second mobile page he set the pageName property to "page2". What server-side simple action can Michael add on the second page to navigate the mobile application user to the first page when touched?
A. Open Page
B. Open Mobile Page
C. Move To Mobile Page
D. Move To Application Page
Mark has designed a mobile application with two mobile pages. For the first mobile page he set the pageName property to "viewMobilePage" and for the second mobile page he set the pageName property to "documentMobilePage". He designed the viewMobilePage to display a listing of customer names from the CustomersByName view. He designed the documentMobilePage to display the document details for the customer touched on the viewMobilePage. He specified "customerDoc" as the name for the Domino Document data source and the field with the customer phone number is named "phone". What can Mark do to add a touch control to send an SMS message to the customer currently displayed on the documentMobilePage?
A. For the Edit Box control bound to the phone field add the property and value of type="sms".
B. Nothing, access to the SMS function of the mobile device is not supported for mobile applications developed using the Mobile controls inDomino Designer.
C. Add a Tool Bar Button control and compute its href property using this server-side JavaScript:return "sms:" + customerDoc.getItemValueString("phone");
D. Add a Rounded List Item control and compute its sms property using this server-side JavaScript:return customerDoc.getItemValueString("phone");
Diana created a data source for her XPage and added one of the fields by dragging and dropping it from the Data Panel onto her XPage. Within the Properties tab, under the Data section, which three options does she have for binding the data? (Choose three.)
A. URL
B. XML
C. JavaScript
D. View Column
E. Simple Data Binding
F. Expression Language
Which control should Jane use to switch display to any one of several views in the Customers application?
A.
B.
C.
D.
Which property does the Dojo Text Area control have that the Multiline Edit Box control does not?
A. Dojo Text Area has a trim property.
B. Dojo Text Area has a autodate property.
C. Dojo Text Area has a htmlFilter property.
D. Dojo Text Area has a currentDate property.
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.
Sofia has created a button on an XPage that has the following JavaScript code for the onclick event: applicationScope.put("School","Montessori"); If the application is closed and reopened, what is the value in contained in applicationScope.School?
A. ""
B. null
C. Montessori
D. exception error
Jimmy wants to define a data source within his XPages application. Which option is a valid data source?
A. REST Service
B. Object Data Source
C. an IBM Domino Form
D. Domino ViewEntryCollection
Within the JavaServer Faces (JSF) lifecycle the "view" which contains all the GUI components is managed internally by which object?
A. Faces
B. viewRoot
C. FacesServlet
D. FacesContext
When adding a custom control to his XPage, Dennis wants to display a custom message to the designer rather than the normal design representation of the custom control. How would he accomplish this?
A. In the custom control Design view, select the Design Definition section and enter the custom XSP Markup.
B. In the custom control Properties view, select the Design Definition section and enter the custom XSP Markup.
C. In the custom control Properties view, select the Design Definition section, select the "Display custom XSP markup" option and enter the customXSP Markup.
D. In the custom control Properties view, select the Custom Control option, and within there select the "Display custom XSP markup" options. Thiswill display a dialog where the custom XSP Markup can be entered.