Hi there! I want to change a field’s displayed value without modifying it in the database table or view. I successfully changed the ViewValue in RowRendered
using the following code:
if (Convert.ToString(FieldName.CurrentValue) == "A") {
FieldName.ViewValue = "B";
}
if (Convert.ToString(FieldName.CurrentValue) == "C") {
FieldName.ViewValue = "D";
}
My question is: How can I update the column filter to use the new displayed values instead of the original ones?