Page 1 of 1

Feature Request: Get Picture.URL from the datasource

PostPosted: 16 Jul 2015 11:13
by asp
Hi!

Sometimes it is more convenient to get image.picture.url from the datasource. Please, add this feature to the future version. It could be made like this (in DataLinkUpdateControl method)

Code: Select all
if DataLink.Field.DataType in [ftString, ftWideString] then begin
  Picture.Url:= DataLink.Field.AsString;
end;


Thank you.