Multiple choice technology web technology

Which of the following are dojo.xhrPost object properties

  1. form

  2. rowSelector

  3. field

  4. postData

Reveal answer Fill a bubble to check yourself
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.