Hi Krunal,
Thank you for contacting Syncfusion support.
Schedule Resource view implemented from getting images from local files and your requirement of “Load Resource image from URL” can be achieved using custom ResourceItemTemplate view, using which custom view can be provided as Resource display picture and these images can be directly loaded from either database or URL.
[Code Snippet]
schedule.ResourceItemTemplate = new DataTemplate(() =>
{
return new Image
{
Source = ImageSource.FromUri( new Uri("Image URL")),
};
}); |
We have prepared a simple sample for the same,
Kindly refer our UG documentation to know more about Resource view customization using DataTemplate and TemplateSelector,
We hope this helps. Kindly revert us if you have any concern.
Regards,
Subburaj Pandian V