D'Arcy from Winnipeg
Musings of a Canadian Developer - Silverlight, ASP.NET, BizTalk, Life, and Technology

Infragistics UltraWebGrid Cell.GetValue Function - Funny what a difference ( ) makes...

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


Feedback

# re: Infragistics UltraWebGrid Cell.GetValue Function - Funny what a difference ( ) makes...

hahah! Javascript is great (cough) you just printed out the code of that function. 9/12/2007 1:20 AM | mel

# re: Infragistics UltraWebGrid Cell.GetValue Function - Funny what a difference ( ) makes...

not getting , grid updatecell event ,how can i get updated row index 12/25/2007 2:14 AM | Ranjith

# re: Infragistics UltraWebGrid Cell.GetValue Function - Funny what a difference ( ) makes...

Poda poori mone, if you are writing it should be understandable, patti thayoli 10/1/2009 7:50 AM | searcher

Post a comment