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
35
Paging and templated column
posted

 I've turned on paging in my WebGrid.  I've got a templated column in my grid that is used to display a hyperlink.  When move to the next page, I get the following error:

Databinding methods such as Eval(), XPath(), and Bind() can only be used in the context of a databound control.

 

HTML:
                    <igtbl:TemplatedColumn BaseColumnName="ID" Key="ID">
                        <Header Caption="ID">
                        </Header>
                        <CellTemplate>
                            <a href="WorkOrder.aspx?WorkOrderID=<%# Eval("ID") %>"><%# Eval("ID") %></a>
                        </CellTemplate>
                    </igtbl:TemplatedColumn>

How would one have a template column and paging work at the same time?

 

Rick 

Parents Reply Children
No Data