1
I have the following code:
groupItems.AddSimpleFor(m => m.Bcx_codigo).CssClass("lbcod")
.Editor(e => e.SelectBox().Width("300px")
.DataSource(ContaBancariaController.ListaBancosBuscados)
.DisplayExpr("Ban_Nome")
.ValueExpr("Bcx_codigo")
.ID("ibcod"));;
It results in :
Where I choose what appears to me is in the DisplayExpr
, am I correct? , would like to modify the DisplayExpr
not to display only the Ban_Nome
, but also another field called Bcx_agencia
I wanted something like ("Ban_Nome" + , + "Bcx_agencia")
, how can I change the DisplayExpr
to do this? and another question, the ValueExpr
I choose the data I want to send, I’m correct?
saw my answer?
– Leandro Angelo
Sorry for the delay, I see now
– Jeff Henrique