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>
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>