Textbox only displays content when the row is in edit mode
I have done every thing I can think of, but the textbox just does not display the values.
Where is my mistake?
<dxg:GridColumn FieldName="secUserName" Header="TRAIL">
<dxg:GridColumn.DisplayTemplate>
<ControlTemplate>
<StackPanel>
<TextBox Text="{Binding Path=Data.secUserName, Mode=TwoWay}" ></TextBox>
</StackPanel>
开发者_如何学运维 </ControlTemplate>
</dxg:GridColumn.DisplayTemplate>
and in vb
'<!-- load the datagrid -->
Module1._Context.Load(Module1._Context.GetGESECsQuery())
GridControl1.AutoPopulateColumns = False
GridControl1.DataSource = Module1._Context.GESECs
I suggest that you use our TextEdit instead of the standard TextBox:
<dxg:GridColumn.DisplayTemplate>
<ControlTemplate>
<StackPanel>
<TextEdit EditValue="{Binding Path=DataContext.secUserName}"></TextEdit>
</StackPanel>
</ControlTemplate>
</dxg:GridColumn.DisplayTemplate>
If this does not help, please remove the template and make certain that the grid has a column bound to the secUserName field and it shows data in runtime.
精彩评论