PDA

View Full Version : getting items from data provider


idpexec
11-11-2003, 05:33 PM
Hey there,

I have data provider that cooresponds to a set of records from a database.

There are three fieldnames: noteNumber, noteTC, and note. How can I get the value from a specific field in a specific row?

Also, can I get a column array to set a comboBox for instance?

I've tried data.getItemAt(index), but it returns [Object object].

Thanks,
Ward

Eric Echols
11-12-2003, 09:13 AM
if you are getting the information from a database, try using the column names...

data.getItemAt(index).ColumnName

this should return you the data in that cell.