为 Devexpress ASPxGridView 配置过滤器
我有一个名为“状态”的列,它显示与状态相对应的图像。我在这个专栏上有一个过滤器。我怎样才能本地化?
<dx:GridViewDataImageColumn Caption="Status" FieldName="Status" Width="100px"
ShowInCustomizationForm="True" VisibleIndex="9">
<Settings AllowSort="True" SortMode="Value" AllowHeaderFilter="True" ShowInFilterControl="True" />
<HeaderStyle HorizontalAlign="Center" />
</dx:GridViewDataImageColumn>
I have a column named Status that display an image corresponding to states. And I have a filter on this column. How can I localize?
<dx:GridViewDataImageColumn Caption="Status" FieldName="Status" Width="100px"
ShowInCustomizationForm="True" VisibleIndex="9">
<Settings AllowSort="True" SortMode="Value" AllowHeaderFilter="True" ShowInFilterControl="True" />
<HeaderStyle HorizontalAlign="Center" />
</dx:GridViewDataImageColumn>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定我是否正确理解你的任务。但是,您似乎需要使用 gridView 的 HeaderFilterFillItems 事件来完成您的任务。
I am not sure that I understand your task correctly. However, it seems that you need to use the gridView's HeaderFilterFillItems event to accomplish your task.