我有一个类似的通用集合
Dim List(Of t) myData = data.GetData()
myWebDataGrid.DataSource = myData
myWebDataGrid.DataBind()
webdatagrid排序的配置是这个
<Behaviors>
<ig:Sorting Enabled="true" SortingMode="Multi">
<ColumnSettings>
<ig:SortingColumnSetting ColumnKey="Key1" Sortable="true" />
</ColumnSettings>
</ig:Sorting>
</Behaviors>
但是当我在这个控件上设置可排序属性并运行页面时。。。我只是试着排序,所有的数据都消失了。
是的,网格希望在每次回发时都有数据源。或者您可以尝试将EnableDataViewState="true"
我意识到回发后我必须重新设置数据。