Page 1 of 2
Mailto

Posted:
03 Jan 2015 11:31
by etwoss
Hi
What should be the link property for calling mailto?
just mailto:recipient@example.com does not work
Eric
Re: Mailto

Posted:
05 Jan 2015 10:54
by Alexander Bulei
Hi Eric,
Removed validation function of link property in next beta build.
Best Regards.
Re: Mailto

Posted:
05 Jan 2015 13:18
by etwoss
Hi
You mean
mailto:recipient@example.com
Should have worked?
Eric
Re: Mailto

Posted:
05 Jan 2015 13:30
by Alexander Bulei
etwoss wrote:Hi
You mean
mailto:recipient@example.com
Should have worked?
Eric
Yes

Re: Mailto

Posted:
10 Jan 2015 10:32
by etwoss
Hi
Just installed latest version
lblLink.Link := 'mailto:' + Datamodule.qryClientInfoEMAIL.AsString;
Still does not work.
Old version showed some webpage, this version does nothing.
Eric
Re: Mailto

Posted:
12 Jan 2015 11:02
by Alexander Bulei
Hi Eric.
Clearly, must also fill the text property.
delphi code
lblLink.Text:= 'Test #1'
Best Regards.
Re: Mailto

Posted:
14 Jan 2015 18:56
by etwoss
Hi
Label was connected to a Database field, but added some text,
No result!
Eric
Re: Mailto

Posted:
14 Jan 2015 19:02
by Alexander Bulei
Hi Eric,
delphi code
procedure TIWForm10.IWAppFormCreate(Sender: TObject);
begin
IWCGJQLabelEx1.Link:= 'mailto:recipient@example.com';
IWCGJQLabelEx1.Text:= 'recipient @ example.com';
end;
Work as expected.
Note: Property Link doesn't support async change.
Best Regards.
Re: Mailto

Posted:
15 Jan 2015 08:54
by etwoss
Hi
can you try connection the label using datalink
Eric
Re: Mailto

Posted:
15 Jan 2015 10:13
by Alexander Bulei
Hi Eric,
DataLink will set only the text!
Note: Property Link doesn't support async change.
Send me the simple testcase or quote of code.
Best Regards.