Hi Community,
I have a text variable which contains a lot of information.
Code:
var $info_text= "a lot of text <a href='test@mail.com'>test@mail.com</a> more text see <a href='myhomepage.com'>homepage</a>";
with an email adress and a link to another homepage in it.The text is shown in a panel.
Code:
infoNameSpace.info = new Ext.extend(Ext.Panel,{
html:'<div class="text"><span id="$info_text">' + language.$info_text + '</span></div>',
title: '<span id="$info_icon_text">' + language.$info_icon_text + '</span>',
scroll: 'vertical',
styleHtmlContent: true,
iconCls:"Nav_Icon_Info",
fullscreen : true,
});
Clicking on the links on the browser and on my htc does not work. Browser says:
file:///C:/Dokumente und Einstellungen/lyth/workspace/ProduktKatalog/assets/www/"www.myhomepage.com".
Fehler 6 (net::ERR_FILE_NOT_FOUND):
How can I realize that clicking on a link of the page opens the page an clicking on the email opens the mail client.
Greetings
Christine