最近在用dev控件做项目,在这边做一下记录为了以后可能用到或者别人可能用到
apsxgridview
1)增加序号列:
<dx:GridViewDataTextColumn Caption=”序号” VisibleIndex=”0″ >
<DataItemTemplate>
<%# Container.ItemIndex+1%>
</DataItemTemplate>
</dx:GridViewDataTextColumn>
其中VisibleIndex 指的是在页面中显示成第几列
2)查询和分组
ShowFilterRow:设置是否有查询行;ShowGroupPanel:设置是否可分组
<Settings ShowFilterRow=”True” ShowGroupPanel=”true” />
查询下拉框:首先要绑定的列用下拉框方式绑定的字段值:
<dx:GridViewDataComboBoxColumn Caption=”工作方向” VisibleIndex=”21″ FieldName=”WorkDirection” Width=”10%”>
<Settings AutoFilterCondition=”Contains” />–指的是查询方式是模糊查询,精确查询用“Equals”
<PropertiesComboBox ValueType=”System.String” Spacing=”0″>
</PropertiesComboBox>
</dx:GridViewDataComboBoxColumn>
FieldName=”WorkDirection”
一般这种字段存的是1,2,3之类的值需要转换成文字内容
转换方法:
需要事件:OnDataBound=”aspxGridView_DataBound”
在.cs文件中的该事件中写入:
if ((aspxGridUser.Columns[“WorkDirection”] as GridViewDataComboBoxColumn).PropertiesComboBox.Items.Count == 0)
{
(aspxGridUser.Columns[“WorkDirection”] as GridViewDataComboBoxColumn).PropertiesComboBox.Items.Add(“计划”, “1”);
(aspxGridUser.Columns[“WorkDirection”] as GridViewDataComboBoxColumn).PropertiesComboBox.Items.Add(“调度”, “2”);
}
页面中“
工作方向”就会显示汉字同时该列上方的查询下拉框也会出现
3)一些提示:没有数据时;取消操作的显示默认是Cancle;分组的提示;删除时的提示
<SettingsText CommandCancel=”取消操作” EmptyDataRow=”没有您要查询的数据信息!” GroupPanel=”拖拽想要分组的[列名]至此” ConfirmDelete=”确认删除吗?”/>
4)aspxgridview 设置分页
SettingsPager属性
mode:设置是否显示分页;
PageSize:
每页的行数 ;ShowEmptyDataRows:当前页中如果有空行的话,空行是否还显示网格
<SettingsPager ShowEmptyDataRows=”True” PageSize=”20″ ShowDefaultImages=”False” mode=”ShowPager”>
<AllButton Text=”All”>
</AllButton>
<NextPageButton Text=”下一页 >”>
</NextPageButton>
<PrevPageButton Text=”< 上一页”>
</PrevPageButton>
<Summary Text=”第 {0}页 共 {1}页 ({2} 条记录)” />
</SettingsPager>
5)注意事项:分页和查询还有排序这几个做操作的时候需要重新加载数据,所以在page_load中需要每次回发的时候绑定aspxgridview的数据。或者在每个操作回发的事件中绑定数据
6)滚动条的设置:<Settings ShowHorizontalScrollBar=”false” ShowVerticalScrollBar=”false” />