Which of the following are dojo.xhrPost object properties
-
form
-
rowSelector
-
field
-
postData
A,D
Correct answer
Explanation
dojo.xhrPost is an AJAX method in the Dojo toolkit that accepts multiple object properties to configure POST requests. The 'form' property accepts a form ID or DOM node to serialize its contents automatically. The 'postData' property allows passing raw data as a string or object directly in the request body. Options B (rowSelector) and C (field) are not valid dojo.xhrPost properties - they may belong to other Dojo widgets or data structures.