//Javascript $(document).ready(function () { var widthValue = $(window).width(); $("#JQGridID").jqGrid({ width: widthValue, loadError: function (xml) { alert('Unable to load result data.'); } });
function setGridHeight() { try { var ht; ht= $(window).height(); // maybe need to subtract out other elements. do your own logic here. $("#gridId").height(ht); } catch (e) { } }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)