Martin,
Thanks so much for you earlier help with my grid problems. I come to you with another n00b question.
I have my grid working like I want it to, however, when I double click on a row, and my window opens up my end goal is to populate that window with an image.. My thought was to name the images in relation to the row index for simplicity though the ID field would probably be a better idea…
I have tried to “hack” some of what I see here to do what I am seeking, but I’m unable to get it to work.. I understand that the rowdoubleclick event will be involved and I am assuming “event.args.rowindex” is the number I am seeking which I would then load an image with.. Just not savvy enough with JS to make it happen though.. I assume this is very simple so I thought it couldn’t hurt to ask for help.
(and yes, when mucking around with the below I *did* un-comment out the lines.. 
//alert(“Row with bound index: ” + event.args.rowindex +” has been clicked.s”);
$(‘#grid’).on(‘rowdoubleclick’, function (event) {
$(‘#window’).jqxWindow(
// { content: ‘<br>’+
// ‘ .row: ‘ + event.args.rowindex +'<br><br>’
// + ‘ .Description : ‘ + ‘<br>’
// + ‘ .Pre : ‘ + event.args.row.bounddata.Prefix });
);
$(‘#window’).jqxWindow(‘open’);
});