Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
130
create ColumnHeader that is hyperlink
posted

I am trying to modify existing code that is similar to the following:

   ch = new ColumnHeader(false);
   ch.Caption = "Total Cost";
   ch.RowLayoutColumnInfo.OriginX = 8;
   ch.RowLayoutColumnInfo.OriginY = 0;
   e.Layout.Bands[0].HeaderLayout.Add(ch);

What I want to do is create a link so that when the "Total Cost" Header is clicked, another aspx page will open up.  Is there a way to do this?

Thanks!