Hi,
I have now introduced a new column with hyperlink cell values. The problem is clicking on the hyperlink fires the RowEditTemplate, the page does not navigate away as you would expect it to.
Rob
In addition to setting the AllowUpdateDefault under DisplayLayout, you should be able to specify it on the Band and Column levels as well. Try setting the AllowUpdate on your hyperlink column to "No".
I'm facing the same problem and Sung I tried the solution you posted and did not work for me. So what we did is, we wrote a client side event for the cell click handler for this grid and if the column key is the hyperlink column then we are doing EndEdit of Row Edit Template ( basically to close the template) if the Row Template is already open.And now our hyperlink is working. But this causes a flicker to the user like the row template gets opened & closed.
Waiting for an Efficient Solution !!