Masking Account number to View only last 4 digits in DevExpress GridViewDataColumn(屏蔽帐号以仅查看 DevExpress GridViewDataColumn 中的最后 4 位数字)
问题描述
我需要添加一个 Mask/DisplayFormatString 来仅查看 DevExpress GridViewDataColumn 中的最后 4 位数字.以真实账号为123456789为例.然后它应该显示为*****6789.你能帮我解决这个问题吗.
I need to add a Mask/DisplayFormatString to view only last 4 digits in DevExpress GridViewDataColumn. As an example if the real account number is 123456789. Then it should display as *****6789.
Can you please help me with this.
<dx:GridViewDataColumn Caption="Bank Account Number" FieldName="BankAccountNumber"></dx:GridViewDataColumn>
推荐答案
据我所知,ASPxGridView 中没有这样的原生显示格式功能,它会部分地隐藏某些第一个字符的字符串(a密码掩码可用,但会隐藏所有字符),但是您可以处理 ASPxGridView.CustomColumnDisplayText 事件以使用此解决方法生成自定义掩码:
As far as I know there is no such native display format feature in ASPxGridView which obscures a string partially for certain first characters (a password mask is available but obscures all characters), however you can handle ASPxGridView.CustomColumnDisplayText event to produce custom masking with this workaround:
protected void ASPxGridView1_CustomColumnDisplayText(object sender, DevExpress.Web.ASPxGridViewColumnDisplayTextEventArgs e)
{
// check column name first
if (e.Column.FieldName != "BankAccountNumber")
return;
// get column values for BankAccountNumber
string value = e.Value.ToString();
// set asterisk to hide first n - 4 digits
string asterisks = new string('*', value.Length - 4);
// pick last 4 digits for showing
string last = value.Substring(value.Length - 4, 4);
// combine both asterisk mask and last digits
string result = asterisks + last;
// display as column text
e.DisplayText = result;
}
边注:如参考所述,在打印或导出 ASPxGridView 时将使用通过此事件提供的文本,可能您需要单独的 ASPxGridView 实例以多种格式导出或打印.
Side Note: As the reference stated, the text provided via this event will be used when the ASPxGridView is printed or exported, probably you need separate ASPxGridView instance for export in multiple formats or printing.
屏蔽核心示例:Fiddle demo
参考:ASPxGridView.CustomColumnDisplayText 事件
相关问题:
ASPxGridView - 如何使用 CustomColumnDisplayText 事件处理程序
这篇关于屏蔽帐号以仅查看 DevExpress GridViewDataColumn 中的最后 4 位数字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:屏蔽帐号以仅查看 DevExpress GridViewDataColumn 中的最
基础教程推荐
- WPF 模态进度窗口 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
