Rather than your selection_row demo I am trying to implement your "Multiple Selections" demo. Here is a sample of your demo code...
var $grid = $("#grid_rowhover").pqGrid(obj);
$("input[name='rowhover_hover_radio']").click(function (evt) {
$grid.pqGrid("setSelection", null);
var val = $(this).val();
$grid.pqGrid("option", "hoverMode", val);
}).click();
$("input[name='rowhover_sel_radio']").click(function (evt) {
$grid.pqGrid("setSelection", null);
var val = $(this).val();
$grid.pqGrid("option", "selectionModel.type", val);
});
$("input[name='rowhover_selmode_radio']").click(function (evt) {
$grid.pqGrid("setSelection", null);
var val = $(this).val();
$grid.pqGrid("option", "selectionModel.mode", val);
});
When I use this code I can only get it to work using the Eval version. If I switch to the purchased version it does not work. I can also see from your demo page that you are also using the Eval version. Can you change this demo to show how it works with the purchased pro javascript file? I've attached a screen snapshot of your demo page with the Eval notice in the bottom right corner.