While that was some help. I am still lost. One I am not able to open the link on my computer. I can open it open it on my phone. Which doesn’t help to much.
I understand a little of it an what it is saying and trying to do. I don’t understand why the different var are there. Example first name and last name. Then it only lists a select few of the names.
Then this is the code that will perform the popup box with the value from the field that is selected:
$("#window").jqxWindow({autoOpen: false, theme: 'energyblue'});
$('#table').on('rowClick', function (event) {
var args = event.args;
var row = args.row;
var column = args.dataField;
if (column === "productname")
{
var value = row.productname;
$("#window").jqxWindow({content: value});
$("#window").jqxWindow('open');
}
But for the rest I am not understanding its purpose.