Hello,
I have an excell combo cell in a DHTMLXgrid control.
I have it loaded with this value / label pair:
value: 12345
label: 555 Main Street
If I execute this:
alert(mygrid.cells(rId,5).getText());
I get this:
555 Main Street
So far, so good. But if I execute this:
alert(mygrid.cells(rId,5).getValue());
I again get this:
555 Main Street
Please tell me, how do I get the value
12345
returned? What method do I use?
Thank you again for your help!