I followed the steps listed here:
http://devcenter.infragistics.com/Support/KnowledgeBaseArticle.aspx?ArticleID=7700
but for some reason my script is failing. I am stuck (for the time being) using message box debugging, since i do not have permissions to debug scripts on my machine (yet).
The script gets pasts the var row = igtbl_addNew(cbo.grid.Id, 0) line, but does not get past
row.getCell(o).SetValue("Some String");
Any and all help would be greatly appreciated
Is this the exact code that you have written? If so, there's two problems - you're using the letter "o" instead of the number "0", and you have incorrect capitalization of the setValue() function.
Does this help?
No, that was just terrible re-typing of my code, my code is on another system, so what I typed was from memory, the line you have written is the line I am using
row.getCell(0).setValue("Some String");