Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
150
row.getCell(cID).getValue() with uniqueidentifier
posted

Hi,

I have an ultrawebgrid with a column which contains SQL uniqueidentifier values.

In the 'AfterRowActivateHandler' function in the javascript I attempt to use 'row.getCell(cID).getValue()' to retrieve the uniqueidentifier value and assign it to a variable e.g.

var c = row.getCell(cID).getValue();

In IE c equal the string representation of the uniqueidentifier, but in Firefox the value of c is 'NaN'. Any string conversion such as toString() or concatenating an empty string continues to return 'NaN' because that is the value the getValue() method is inherently returning.

Does anyone have any insight into how this may be handled?

Thanks,

Kramer