This is a migrated thread and some comments may be shown as answers.

Hyperlink template not working anymore (firefox 3.5.8 -> 3.6.2)

2 Answers 79 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Lucas Azevedo
Top achievements
Rank 1
Lucas Azevedo asked on 29 Mar 2010, 09:32 PM
Hi, everyone.

I have this stable piece of code which i've just tested in firefox 3.5.8, and it worked fine as expected.

It's a RadGrid. One of its columns is a specific GridTemplateColumn with a HyperLink inside.

Then i got some complaints about the link not working anymore (the user clicked on it and nothing happened). The browser used was Firefox 3.6.2 (latest), so i've updated mine and tested it.

Same result: the hyperlink stopped working and does not trigger the redirection.
The code is intact, hasn't changed a line.

Any help is appreciated, thanks in advance


Lucas

2 Answers, 1 is accepted

Sort by
0
Lucas Azevedo
Top achievements
Rank 1
answered on 30 Mar 2010, 07:33 PM
Here is the code for the grid definition and the column i've mentioned before.

One note: the link is fine, each row has its hyperlink on this column pointing to the right place. The problem is that clicking on it does nothing. :(
I'm pretty sure its firefox compatibility related stuff (maybe something's changed in 3.6.2) but i don't know how to make it work.


<telerik:RadGrid ID="radGridTarefasPendentes" runat="server" AllowPaging="True" AutoGenerateColumns="False" 
                                DataSourceID="objectDataSourceProcessos" GridLines="None" PageSize="8" ShowStatusBar="True" 
                                Skin="SkyBlue" Width="100%" AllowMultiRowSelection="true" OnItemDataBound="radGridTarefasPendentes_ItemDataBound" 
                                OnItemCommand="radGridTarefasPendentes_ItemCommand"
 
... 
 
<telerik:GridTemplateColumn> 
    <ItemTemplate> 
        <asp:HyperLink ID="hyperLinkAbrir" runat="server" NavigateUrl='<%# string.Format("~/EdicaoProcesso.aspx?protocolo={0}", HttpUtility.UrlEncode(Eval("Numero") as string)) %>'>Abrir</asp:HyperLink> 
    </ItemTemplate> 
</telerik:GridTemplateColumn> 
0
Pavel
Telerik team
answered on 01 Apr 2010, 08:23 AM
Hi Lucas,

I am not able to reproduce the problem with FireFox 3.6.2. Could you try the attached sample and let me know if it works on your end and how to modify it so that the problem becomes evident?

Kind regards,
Pavel
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
Grid
Asked by
Lucas Azevedo
Top achievements
Rank 1
Answers by
Lucas Azevedo
Top achievements
Rank 1
Pavel
Telerik team
Share this question
or