I have the below code, this so that I can get the Multiline Edit under the Auto Edit Feature. That part is working great data is bound to the edit portion, but in the actual Grid the columns are blank under these fields - the data is not being bound to the Grid, but is showing up when I open the Edit Popup Panel. Why is the data not showing in the initial grid:
Code:
Code:
<
telerik:GridTemplateColumn
DataField
=
"CorrectiveAction"
FilterControlAltText
=
"Filter CorrectiveAction column"
HeaderText="Corrective
Action"
SortExpression
=
"CorrectiveAction"
UniqueName
=
"CorrectiveAction"
Visible
=
"false"
><
BR
><
EditItemTemplate
><
BR
><
asp:TextBox
ID
=
"TextBox2"
Text='<%# Bind("CorrectiveAction")%>' Columns="30" Rows="5"
TextMode="MultiLine"
runat="server"></
asp:TextBox
><
BR
></
EditItemTemplate
><
BR
></
telerik:GridTemplateColumn
>