Hello,
I am using Telerik control(RadGrid) in sharepoint2007. getting the Error when i am using GridTemplateColumn
I am using Telerik control(RadGrid) in sharepoint2007. getting the Error when i am using GridTemplateColumn
error is <%#Eval("Comments")%> and <%#Bind("Comments")%> is not working in sharepoint2007.
<telerik:GridTemplateColumn HeaderText="Comments" DataField="Comments" SortExpression="Comments"
UniqueName="Comments" AllowFiltering="false">
<ItemTemplate>
<%
#Eval("Comments") %>
</ItemTemplate>
<EditItemTemplate>
<telerik:RadTextBox ID="txtComments" Text='<%#Bind("Comments") %>' Visible="true"
runat="server" TextMode="MultiLine" Width="97%">
</telerik:RadTextBox>
</EditItemTemplate>
</telerik:GridTemplateColumn>
Any idea about this problem?