Use the ListBox inside the Grid
Q:
I use the ListBox inside a GridTemplate used for edit. How should Iconfigure the ControlID / ControlPropertyName properties of theGridTemplate?
A:
You need to pass the ID of the ListBox to the ControlID property of theGridTemplate. The ControlPropertyName needs to be set to "value", butyou don't have to set it. because that's the default value:
<obout:GridTemplate ControlID="ListBox1" ControlPropertyName="value">
|