Get a different value column from Epicombo

I have an epicombo which displays information from MktgEvnt BO, I’m creating some information in a UD table based on the selection of it, the problem that I have is that I need the value from MktgCampaignID to know the ID from the MktgEvntSeq selected. Do you know if there is a way to get any other value different that DisplayMember/ValueMember once the value from the combo has been selected?

image

Yes, but you have to create a table relationship between the two fields Then you can us the Epifilters and Epifiltersparams properties.

1 Like

I believe you can add MktCampaignID to the HiddenColumnsAppend property, or even the Columns property if you want it visible in the dropdown. You can then retrieve MktCampaignID once a selection is made from the dropdown. You may need to change the DataSetMode to RowDataSet if the field is not available in ListDataSet mode.

1 Like

Awesome! Thank you @RBeaghan HiddenColumnsAppend did the trick. I haven’t used that property thanks a lot!