Template Column & Javascript

S

Steve

Hi,

I have a datagrid with a template column in that I'm using to open a link so
that users can drill down to the next level of some data. I'd really like to
utilise javascript so that I can set the properties of the new window that's
opened but can't get it to work despite looking through the other posts in
the forum that relate to this.

My column code is attached - can anyone give me a pointer

Thanks

Steve

<asp:TemplateColumn HeaderText="Team">
<ItemTemplate>


<asp:HyperLink id=Hyperlink1 runat="server" Target="_blank" Text='<%#
DataBinder.Eval(Container.DataItem, "team name") %>' NavigateUrl='<%#
"teamreports.aspx?DateFrom="& DateFrom.Text & "&DateTo=" & DateTo.Text &
"&Team=" & DataBinder.Eval(Container.DataItem, "team") & "&var_Agent=" &
Agent.checked & "&var_SCA=" & SCA.checked & "&var_TM=" & TMs.checked%>'>
</asp:HyperLink>
</ItemTemplate>
</asp:TemplateColumn>
 
E

Eliyahu Goldin

Steve,

Don't use HyperLink. Use a Label and setup client side onclick event that
will call a javascript function with a parameter where you will pass the url
you want to navigate to. In the javascript open a new window in the way you
wish.

Eliyahu
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,763
Messages
2,569,563
Members
45,039
Latest member
CasimiraVa

Latest Threads

Top