new Location()
Properties:
Name | Type | Description |
---|---|---|
name |
string | the location name |
address |
string | the location address |
Example
var loc = new cr.api.Location({ds: dsLocations});
loc.name = "Headquarters";
loc.address = "4280 Express Road, Sarasota, FL 34238";
loc.create()
.done(function() {
console.log(loc);
});
Extends
Members
-
addBarcode
-
Adds a barcode
-
clearFlag
-
Clears the flag of an item
-
clearLabel
-
Clears the label of an item
-
setFlag
-
Sets the flag of an item
-
setLabel
-
Sets the label of an item
-
updateFields
-
Update fields of a document
Methods
-
Adds a comment by string
Name Type Description comment
skipRead
-
attaches an Attachment object
Name Type Description attachmentId
skipRead
-
Checks via the api if we can delete the document
-
Clears the cover image
Name Type Description skipRead
-
Clears a custom field
Name Type Description field
skipRead
-
inherited create(skipRead){promise}
-
Creates an object by the default api.create
Name Type Description skipRead
skips reading the response via _fromJson (false)
-
inherited delete(){promise}
-
Deletes an object by the default api.delete
-
Deletes a Comment by id
Name Type Description id
skipRead
-
detaches an Attachment by kvId (guid)
Name Type Description attachmentId
skipRead
-
inherited discardChanges(){promise}
-
Discards any changes made to the object from the previously loaded raw response or resets it when no old raw response was found
-
inherited existsInDb(){boolean}
-
Checks if the document exists in the database
-
inherited get(_fields){promise}
-
Gets an object by the default api.get
Name Type Description _fields
-
isDirty(){boolean}
-
Checks if the location is dirty and needs saving
-
isEmpty(){boolean}
-
Checks if the location is empty
-
inherited isValid(){boolean}
-
Checks if the object is valid
-
inherited reload(_fields){promise}
-
Reloads the object from db
Name Type Description _fields
-
inherited reset(){promise}
-
Resets the object
-
Set the cover image to an Attachment
Name Type Description att
skipRead
-
Sets a custom field
Name Type Description field
value
skipRead
-
Sets multiple custom fields in a single call
Name Type Description fields
skipRead
-
inherited update(skipRead){promise}
-
Updates an object by the default api.update
Name Type Description skipRead
skips reading the response via _fromJson (false)
-
Updates a comment by id
Name Type Description id
comment
skipRead