Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted on Dec 17, 2007 20:49
open dhtmlx forum
When i click the hyperlink field in grid DHTML AJAX .NET javascript

<cell><![CDATA[<a href="www.google.com">Google</a>]]><cell>

I used the above kind of code in the javascript.
when i click the hyperlink field in grid DHTML?

it shows the resource file not found.

requested URL contains the Web application folder name/www.google.com

how can i fix this?

Please help me.

Answer posted by Support on Dec 18, 2007 02:21
you need to specify full http link here , in other case link value will be threated as name of page ( actually this is default link behavior )

<cell><![CDATA[<a href="http://www.google.com">Google</a>]]><cell>