I need to output a link <a href="#"></a> inside the column template of the grid.
How do i escape the hash character as i now get javascript error when trying to put directly like this
This does not appear to work the same in a child grid. I assume this is because the \\# has a special meaning in a child grid. I tried using just a # sign and also \\\\#, but neither worked. Please let me know how I can get this to work in a child grid as I'm trying to put an anchor tag that calls a javascript function and I need the href='#' in there.
A quick Google search told me that I can use href='javascript:myFunction(argument)' instead of the onclick event. Forgive me, I'm still learning the ways of the interwebs, apparently.
I'm still curious what the escape sequence is for the pound sign in a child grid.