We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Takes the file from clipboard and calls the async callback with file info.
This example demonstrates how to retrieve file from the clipboard (if platform supports this action).
var service = new MobileCRM.Services.DocumentService(); service.pasteFile(function (fileInfo) { /// <param name='fileInfo' type='MobileCRM.Services.FileInfo '/> MobileCRM.bridge.alert("File pasted: " + fileInfo.filePath + "\n" + fileInfo.url); }, MobileCRM.bridge.alert);
Links: