Classes
Namespaces
Methods
-
<static> ajax(settings) → {ix.Ajax}
-
Create and return a new ix.Ajax object.
Parameters:
Name Type Description settings
Object Ajax settings e.g. {dataType: 'json'}, http://api.jquery.com/jQuery.ajax/, additional intrexx properties: urlParameters
Returns:
New instance of ix.Ajax
- Type
- ix.Ajax
Example
var ixAjax = ix.ajax(); ixAjax.requestGroovy('groovy/de/uplanet/lucy/samples/newGuid.groovy', { dataType: "json", data: { "hello": "world!" }, success: function (data) { Notifier.status.notify(data.guids.join("<br>")) } });