-
-
Notifications
You must be signed in to change notification settings - Fork 486
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
数据导出的时候,支持Enum,bool类型 的转换成显示值? #106
Labels
Milestone
Comments
收到,由于最近太忙,在接下来的版本我们会进行处理。 |
希望能不只是显示显示值,能不能也带下拉框,因为客户总有导出的数据编辑改改再导入的需求 😀 |
该需求已在2.4 beta1中处理,欢迎大家后续使用2.4版本通过如下代码实现需求:
|
hueifeng
added a commit
that referenced
this issue
Oct 1, 2020
- 支持单元格导出宽度设置 [#129](#129) - Excel导出支持对Enum的ValueMapping设置 [#106](#106) - Excel导出支持对bool类型的ValueMapping设置 [#16](#16) - [#152](#152) 筛选器支持依赖注入 - #151 导出添加AutoFitMaxRows,超过指定行数则不启用AutoFit - 添加全局IsDisableAllFilter属性,以通过特性禁用所有筛选器 - [#142](#142) 【修复】根据模板列表高度的设置,统一设置渲染高度 - [#157](https://github.com/dotnetcore/Magicodes.IE/issues/157)【修复】对低版本框架的兼容 - Excel导入对图片获取算法的优化
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
public enum CustomerDetailLevel { [Description("小微客户")] Micro = 0, [Description("一级")] LevelOne = 1, [Description("二级")] LevelTwo = 2, [Description("三级")] LevelThree = 3, [Description("特级")] Special = 4, }
数据导出的时候,支持Enum,bool类型 的转换成显示值?
The text was updated successfully, but these errors were encountered: