Avatar

Level 6

Use something like this in the indexChange event for the row (javascript):

this.Cell1.rawValue

= String.fromCharCode(this.index + 65);

65 is the ASCII code for "A", so you're just incrementing the letter using the current index.