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 !!
I see that this post is from 2010 -- and still unanswered. I have the same question. I'm new to the Infragisitics tool set, was hoping to get up an running quickly, but even the simplest things are hard to do and the documentation is immensely frustrating. I've spent hours trying to figure out how to define a hyperlink field in a web grid. Is it possible?
Did you ever get an answer to how to do a hyperlinkfield ? I am trying to do the same exact thing.
Thanks,
Irwin
Amol said: hi, Somewhat related to this how I can implement similar facilty like following in the UltraWebGrid as of .Net default GridView Control. <columns> <asp:HyperLinkField DataNavigateUrlFields="id,PermissionCount,RoleName" DataNavigateUrlFormatString="AddRole.aspx?id={0}&pcnt={1}&rn m={2}" HeaderText="Role Name" DataTextField="RoleName" > <HeaderStyle HorizontalAlign="Center" CssClass="Form_bold" /> <ItemStyle HorizontalAlign="left"/> <HeaderStyle HorizontalAlign="center" /> </asp:HyperLinkField> <columns> Thanks,
hi,
Somewhat related to this how I can implement similar facilty like following in the UltraWebGrid as of .Net default GridView Control.
<columns>
<asp:HyperLinkField
DataNavigateUrlFields="id,PermissionCount,RoleName"
DataNavigateUrlFormatString="AddRole.aspx?id={0}&pcnt={1}&rn
m={2}"
HeaderText="Role Name" DataTextField="RoleName"
>
<HeaderStyle HorizontalAlign="Center" CssClass="Form_bold"
/>
<HeaderStyle HorizontalAlign="center" />
</asp:HyperLinkField>
It seems to me, that the problem occurswhen the columns are added programatically. The AllowUpdate = No seems to have no effect at all, when the column is added dynamic. It still fires the RowEditTemplate. Can you reproduce this behavior?