Is there a way to specify a template for the dataImageUrlField? For instance, the webservice that generates my DTO is not application specific, so it may generate an object with just "IMAGE_UID_SPECIFIER" in the dataImageUrlField. Once an app is deployed however, I may want to map this to http://tempuri.com/imagewebservice/IMAGE_UID_SPECIFIER. In this case I'd want my template to be something like
dataImageUrlField: http://mytemplateurl/imagewebservice/IMAGE_UID_SPECIFIER
checkboxes: {
checkChildren: true
},
dataImageUrlField: 'image',
dataTextField: "name",
});
Any suggestions?
Thanks,
Paul
dataImageUrlField: http://mytemplateurl/imagewebservice/IMAGE_UID_SPECIFIER
{ "name": "object1", "image": "IMAGE_UID_SPECIFIER" }$("#tree").kendoTreeView({
checkboxes: {
checkChildren: true
},
dataImageUrlField: 'image',
dataTextField: "name",
});
Any suggestions?
Thanks,
Paul