What does setting the expandLevel property of a Navigator control to "0" do when the expandable property is set to "true"?
A. expands all the Navigator control levels
B. expands the first (index 0) Navigator child node
C. makes the Navigator control show only the parent levels
D. prevents the Navigator from displaying a twisty on levels that can be expanded
The simpleValuePicker data provider of the Value Picker control supports which kind of data?
A. .Net Matrix
B. JavaScript Arrays
C. @PickerDataSource
D. Direct REST API calls
Richard wants to allow his users to select names from either of two views using the Name Picker control. How can he do this?
A. Richard can use a single Name Picker with two dominoViewNamePicker dataProviders.
B. Richard will need to add two Name Pickers, each using a dominoViewNamePicker dataProvider.
C. Richard will need to use a beanNamePicker dataProvider to merge the contents of the two views for a single Name Picker.
D. Richard can use a single Name Picker with a namePickerAggregator dataProvider. He can add two dominoViewNamePicker dataProviders tothe namePickerAggregator.
What is the purpose of using the Dynamic View Panel?
A. It allows users to filter what content displays in the view.
B. It allows users to customize a view by selecting the columns they want to see.
C. It allows developers to display the contents of a view based on the view's definition.
D. It allows developers to display the contents of any view by defining a faceted area for each view.
What is the purpose of Palette Profiles?
A. allows a developer to save colors in a Profile document
B. allows a developer to select colors for the Controls view
C. allows a developer to select which controls appear in the Controls view
D. allows a developer to save settings for the Controls view in a Profile document
Abby has started a new application and has been working on her local client. She now needs to check the application into a source control system. What does Abby need to do next?
A. Local applications cannot be added to the source control system.
B. Select File > Export as SVN, then import the file into the source control system.
C. Right-click on the application header (icon) of the application she wants to add to source control and select Team Development - Sync withon-disk project.
D. Right-click on the application header (icon) of the application she wants to add to source control and select Team Development - Set UpSource Control for this Application.
Branson is creating a new team profile form for his league's football XPages application. On the XPage is a Combo Box control which contains a list of teams in the league, and a View Control which displays the results of the current season. On the Combo Box control, Branson selected "Set Partial Execution Mode" and then Click on the "Select Element..." button to select the id of the View control. Which phases of the JSF Request life cycle are impacted by this?
A. Apply Request Values, Process Validation, Update Model Values and Invoke Application
B. Render Response, Process Validation, Update Model Values and Invoke Application
C. Apply Request Values, Process Validation, Update Model Values and Restore View
D. Restore Response, Process Validation, Submit Model Values and Render View
Adrian has developed his first XPages application, but he notices the application performs slower than expected. What could be affecting Adrian's XPages application's performance?
A. The "Use Dojo layer libraries" option is disabled.
B. The Global resource expiration is set to 30 days.
C. Adrian did not install the XPages Extension Library.
D. The "Use uncompressed resource files (CSS and Dojo)" option is enabled.
Elvis is debugging a button using the server-side JavaScript debugger. He has set a breakpoint, but the debugger is not breaking when the button is pressed. Why is this?
A. The code needs to enable the debugger.
B. The button is running client-side code only.
C. The code must have a "debugger;" line in it.
D. The code needs an alert line to start the debugger.
The Domino Access Services allow access to what type of IBM Domino data?
A. only databases and documents
B. only databases, templates and documents
C. only databases, views, folders and documents
D. only databases, templates, views, folders and documents
Elaine has added a Name Picker with a dominoViewNamePicker dataProvider. How does she define which column the value should be picked from?
A. The same value will be used for the label and the value.
B. The value will be picked from the first sorted column in the view.
C. Set the valueColumn property to the programmatic name of the relevant column.
D. Set the valueColumn property to the index of the relevant column, where the column indices start at 0.
Karen is helping a new XPages developer to setup his workspace. She wants to make it as effective as possible while eliminating controls that he has not been trained on. Where would she make these changes?
A. Tool Bar
B. Palette Profile
C. Custom Control
D. Workspace Palette
Ben is using a view control on his XPage that contains other controls that perform many computations. He wants to add a Check Box control that will filter the data in the view, but is concerned about performance. He has set the Check Box control to use partial refresh and specified the View control as the refresh id. What else can Ben do to optimize the performance of the XPage?
A. From the "Server Options" section of the event handler on the View control. Click the "Select Element" button next to the Partial Refreshproperty. In the "Select Element to Update" dialog check the "Set Partial Execution Mode" Option.
B. From the "Server Options" section of the event handler on the View control. Click the "Select Element" button next to the "Set Partial ExecutionMode" property. Next select "Select Element from Page" and click on the id of the view control.
C. From the "Server Options" section of the event handler on the Check Box control. Click the "Select Element" button next to the "Set PartialExecution Mode" property. Next select "Select Element from Page" and click on the id of the view control.
D. From the "Server Options" section of the event handler on the Check Box control. Click the "Select Element" button next to the Partial Refreshproperty. In the "Select Element to Update" dialog check the "Set Partial Execution Mode" Option. Next select "Select Element from Page" andclick on the id of the Check Box control.
What are two ways Olly can identify which of his applications are not assigned to a working set? (Choose two.)
A. Open Bookmarks.nsf and look in the Working Sets\None view.
B. In the Applications view, in the Manage Working Sets menu, select All.
C. In the Applications view, in the Manage Working Sets menu, select None.
D. In Quick Links tab of the home page, click on the "Applications Not in Working Set" option.
E. In the Applications view, in the Manage Working Sets menu, select "Applications Not in Working Set".
Mark has added the Extension Library Dialog control to an XPage, accepting the default ID of "dialog1". He has added a button to launch the dialog. Which option will launch the dialog from the button?
A. On the Client tab of the onclick event of the button, add xsp . openDialog ("dialog1").
B. On the Server tab of the onclick event of the button, add xsp. openDialog ("dialog1").
C. On the Client tab of the onclick event of the button, add xsp. openDialog("# {id: dialog1}").
D. On the Server tab of the onclick event of the button, add xsp. openDialog ("# {id: dialog1}").