Hi,
I have a grid in my ContentPage which has a templated column with an editor in it:
<grid:GridTemplateColumn HeaderText="Item Name"
MappingName="Values[1].StringDisplayValue"
AllowEditing="True"
MaximumWidth="200">
<grid:GridTemplateColumn.CellTemplate>
<DataTemplate>
<Editor Text="{Binding Path=Values[1].StringDisplayValue,Mode=TwoWay}"
FontSize="Small"/>
</DataTemplate>
</grid:GridTemplateColumn.CellTemplate>
</grid:GridTemplateColumn>
Is there any way to set it up so that the row height automatically updates as I'm typing in the editor and the editor changes size? I would like for the row to resize automatically with the entered text.
What's the best way to accomplish this?
Thanks,
Alfredo Diaz