Hi Peter,
Please see the screencast http://youtu.be/Bnk0TFq4Ug8 and the code below.
Thanks,
Mark
$(‘#jqxWindow’).jqxWindow({
width: 600, height: 500,
autoOpen: false, theme: theme, resizable: false
});
$(‘#jqxWindow2’).jqxWindow({
width: 850, height: 500,
autoOpen: false, theme: theme, resizable: false
});
$(‘#jqxgrid’).bind(‘cellclick’, function(event) {
if (column.text == ‘size’) {
$(‘#jqxWindow’).jqxWindow(“open”);
}
})
$(‘#jqxgrid_arrdone’).bind(‘cellclick’, function(event) {
if (column.text == ‘done_size’) {
$(‘#jqxWindow’).jqxWindow(“open”);
}
})