Hello,
i'm using multiselect with an id as DataTextField instead of a string value, When i try to search for a id in my multiselect i get a error "".toLowerCase is not a function i'm guessing this is because i use id instead of string. Can i work around this somehow?
.Name("BaPaymentMachine")
.Placeholder("Choose value..")
.DataTextField("Id")
.DataValueField("BaNumber")
.DataSource(ds => ds.Read("GetAllBaPayment", "Report"))
.HtmlAttributes(new { @style = "width:200px;" }))
Thanks in advance
i'm using multiselect with an id as DataTextField instead of a string value, When i try to search for a id in my multiselect i get a error "".toLowerCase is not a function i'm guessing this is because i use id instead of string. Can i work around this somehow?
.Name("BaPaymentMachine")
.Placeholder("Choose value..")
.DataTextField("Id")
.DataValueField("BaNumber")
.DataSource(ds => ds.Read("GetAllBaPayment", "Report"))
.HtmlAttributes(new { @style = "width:200px;" }))
Thanks in advance