Which statement is true regarding the Extension Library Tooltip control?
A. A developer is not allowed to place other data components in between the
B. To use the beforeContentLoad and afterContentLoad properties, a developer must set dynamicContent to true.
C. When the position property is set to auto, the tooltip calculates where it should display in relation to the element on the page.
D. To use the beforeContentLoad and afterContentLoad properties, a developer does need to set dynamicContent to false.
Jason added a Data View control to an XPage and defined as its data source the "CustomersByNameView" in the Customers application. He specified the CustomerName column as the column to open the selected customer document when clicked. Into which property of the Data View control should Jason add columns to display the values from the City, Contact and Phone columns in the data source?
A. columns
B. addColumns
C. multiColumns
D. extraColumns
Jessica wants to resize a text field from its default size. What should she enter in the HTML attributes for the field?
A. ROWS=10 COLS=20
B. "ROWS=10 COLS=20"
C. SIZE=75 MAXLENGTH=100
D. "SIZE=75 MAXLENGTH=100"
Lynn would like to obtain the current date and time from the server hosting the database where his Formula code is executing. Which line of code could he use to do that?
A. myTime := @Now([SERVERTIME])
B. myTime := @ServerTime([NOW])
C. myTime := @Time([SERVER]:[NOW])
D. myTime := @Server([TIME]:[NOW])
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
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.
James is using the simple action "Send mail message" in a button. Which statement describes a limitation when using this simple action?
A. The Body field accepts only plain text.
B. The Body field accepts only text and graphics.
C. The Body field accepts only text and attachments.
D. The Body field accepts both plain and styled text, but not graphics.
John wants to add a "data-role" attribute to his Edit Box control. Which can he use to accomplish this?
A. Using the attrs property of the Edit Box he can add a "data-role" and an associated value.
B. Using the dojoAttributes property of the Edit Box he can add a "data-role" and an associated value.
C. Using the customProperty property of the Edit Box he can add a "data-role" and an associated value.
D. Custom attributes are not possible in XPages and must be added to the field using an external Javascript library such as jQuery.
Which is a valid property for an
A. style
B. handler
C. rendered
D. partialRefreshId
A developer is working on an XPage and there is a client-side feature that needs to compute a value from a viewScope variable docStatus. Which Expression Language syntax will compute the value client-side?
A. var myStatus = viewScope.get('docStatus');
B. var myStatus = "{#viewScope.get('docStatus')}"
C. var myStatus = "#{javascript:viewScope;docStatus;}"
D. var myStatus = "#{javascript:viewScope.get('docStatus');}"