I'm new to infragistics. I see lots of examples for the igtbl commands. Mine are not working. Do I need to do something special in the grid area to allow access to these functions ? Below is my code. The lines marked "does not work" are where I am having trouble:
<script id="Infragistics" type="text/javascript">
//Add code to handle your event here.
alert(gridname); works
alert(cellid); works
alert(button); works
alert(cellid);
jrmpat654,
There isn't anything special you have to do to enable the igtbl functions to work. However, when I took at look at the code snippet your provided, I noticed that you are passing in "cellID" or "cellId" into the function. Javascript is case-sensitive, so if you are trying to pass in the CellClickHandler's "cellid" parameter, it must be the same case, otherwise Javascript thinks it's a different object. Try using:
and see if that helps.