Hi -
Till a few days ago this line worked well for me:
- htmlString = ((htmlString + "</br>" + "<a href=" + zoho.appuri + "'#view:customerRecordCompleteHtmlView?customerIDParam=" + custIDStringTemp + "' target='calendarIframe'>") + custRecTemp11.Formula2) + "</a>";
I noticed that in particularly any variations of the href-value that includes column "
:" makes the url href value to be stripped when in display on the page.
I think this seems to be relevant for Form's html fields ..
So this is rendered correctly:
- htmlString = ((htmlString + "</br>" + "<a href='#View'>") + custRecTemp11.Formula2) + "</a>";
And this won't:
- htmlString = ((htmlString + "</br>" + "<a href='#View : '>") + custRecTemp11.Formula2) + "</a>";
Any idea why this is happening?
Many thanks