<dx:GridViewCommandColumn Width="150px">
<ClearFilterButton Visible="true">
</ClearFilterButton>
<EditButton Visible="true">
</EditButton>
<NewButton Visible="true">
</NewButton>
<DeleteButton Visible="true">
</DeleteButton>
</dx:GridViewCommandColumn>
...now becomes one long, single line of markup like so...
<dx:GridViewCommandColumn Width="150px" ShowClearFilterButton="True"
ShowEditButton="True" ShowNewButton="True" ShowDeleteButton="True" />
The old markup will cause an error so you have you make the change.
No comments:
Post a Comment