Infragistics web grid problem
Hi!
I have recently started using infragistics web grid control. I have three columns in web grid EmployeeID, EmployeeName , EmployeeStatus. EmployeeID is template column with a hyperlink control placed inside the CellTemplate. By clicking on hyperlink i need to go to another page called EmployeeDetails. Clicking on the hyperlink also needs the value of EmployeeID and EmployeeStatus be passed in the query string. I am able to access the value of EmployeeID template column with the following code:
<asp:HyperLink id=_employeeIDHyperLink runat="server"
NavigateUrl='<%# String.Concat("EmployeeDetails.aspx?EmpID=", Container.Text)%>'> <%# Container.Text %>
</asp:HyperLink>
My problem is how do i get the corresponding value of EmployeeStatus column so that i can pass it in query string.
Any help on this would be of great help!
Thanks in advanced!!!
Sandeep Saran
|