Tuesday, July 10, 2007 3:16 AM
So I'm trying to get the value of a cell in my UltraWebGrid. I'm using this code to retrieve the cell object:
oCell = row.getCellFromKey("KeyValue");
But then I wanted to verify that the value coming back was correct, so I tried this:
alert(oCell.getValue);
What I got on my screen was a huge dialog with reams of javascript! What the...?!
I looked back through the documentation...I had the method spelt right...didn't really make sense.
"What if I put ( ) at the end?" I wondered...
alert(oCell.getValue( ));
Numdaplume! I now have my cell value!
Ah javascript...
D