I try some method but i always get the same problem.
i try
e.Cells.FromKey("url").TargetURL = "@www.cegertec.com"
or
e.Cells.FromKey("url").TargetURL = "[@_blank]www.cegertec.com
or in client side
window.open("www.cegertec.com", "_blank", "resizable=1, toolbar=0, location=0")
and i each time he return me
http://localhost:61569/tools/PA/www.cegertec.com
why they always add : http://localhost:61569/tools/PA/
Hi,
We were using the same functionality i.e when we click on the Item inside a cell it will redirected to the URL(basically a new page). Now we have migrated to WebHierarchialDataGrid.
Please let me know how to acheive the same fucntionality in the WebHierachialDataGrid.
PFB for the Corresponding Code:
string strPortDetails = "BLOCKED SCRIPTshowport('" + GroupId + "')";
e.Row.Cells.FromKey(UIConstants.Keys.HierName).TargetURL = strPortDetails;
Thanks In Advance!! :-)
Thank it works!
Tell to your boss you can i a bonus in your salary this week!
:)
Hello robpic,
try to put http:// before www,
for example:
window.open("http://www.cegertec.com", "_blank", "resizable=1, toolbar=0, location=0")
e.Cells.FromKey("url").TargetURL = @"http://www.cegertec.com"
I hope it helps