I have a Radgrid that the first column is created with:
The problem I am having is:
Radgrid1 is generated on page load and it is working correctly... appeared with the first column with hyperlink ability. Then I click other grid control such as next page or filtering... then the ID dissappeared. so the first column only showing me dashes (-).
Can anybody help me on how to fix this problem?
Thank you.
| <telerik:RadGrid ID="RadGrid1" runat="server" AllowFilteringByColumn="True" Width="100%" |
| AllowSorting="True" GridLines="None" Skin="Web20" OnNeedDataSource="RadGrid1_NeedDataSource" |
| OnSortCommand="RadGrid1_SortCommand" OnItemCreated="RadGrid1_ItemCreated" AllowPaging="true" |
| AutoGenerateColumns="False" > |
| <MasterTableView > |
| <Columns> |
| <telerik:GridHyperLinkColumn DataNavigateUrlFields="EMPLOYEEID" DataNavigateUrlFormatString="~/Search.aspx?EMPLOYEEID={0}" |
| DataTextField="EMPLOYEEID" HeaderText="ID" AllowFiltering="true" FilterControlWidth="35px" UniqueName="EMPLOYEEID"> |
| <HeaderStyle ForeColor="White" Font-Names="Arial Narrow" Font-Size="Small" /> |
| <ItemStyle Font-Names="Arial Narrow" Font-Size="Small" Font-Bold="True" Font-Underline="True" /> |
| </telerik:GridHyperLinkColumn> |
| <telerik:GridBoundColumn DataField="IDENTIFIER" HeaderText="IDENTIFIER" SortExpression="IDENTIFIER" |
| UniqueName="IDENTIFIER"> |
| </telerik:GridBoundColumn> |
| ..... |
| </Columns> |
| <PagerStyle Mode="NumericPages" PageButtonCount="10" /> |
| </MasterTableView> |
Radgrid1 is generated on page load and it is working correctly... appeared with the first column with hyperlink ability. Then I click other grid control such as next page or filtering... then the ID dissappeared. so the first column only showing me dashes (-).
Can anybody help me on how to fix this problem?
Thank you.
