AdvGridDropDown get 2 columns text in selected row

I'm using this component to display pairs of related values as in Country; City

When a row is selected only the text of the first column displays in the box. I need to get the text in both columns in the selected row to use them elsewhere (not in the text box).
Is there a way to accomplish this?
Best Regards
Francisco Alvarado

Did you try to get the value with:


  advgriddropdown.Grid.Cells[columnindex,advgriddropdown.Grid.Row];

with columnindex the index of the column of which you want to get the value.

Thank you Bruno, That worked!

Best Regards
Francisco Alvarado