JASPERREPORTS SERVER PROGRAMMING GUIDE RELEASE 5.6 says at page 15
"type": {
"type": "string",
"description": "Type of resources to search.",
My example fails with a type-param.
Instead I use a "types"-param with a list of type-names:
JRSClient.resourcesSearch({
folderUri:"/public/Samples",
types: ['dashboard', 'inputControl'],
recursive:true,
success:listRepository,
error:function (err) {
alert(err);
}
});
Recommended Comments
There are no comments to display.