Hi thanks for reply … well i got this problem in Chrome .. i got the version 20.+++.
I got six columns with the property columnsresize: true and each one got a width 10 , so when the datagrid it’s ready i do this.
this.setRenderGrid = function () {
$ = jQuery.noConflict();
var a = $("#container").width();
for (var b = 0; b <= this.numColumns - 1; b++) {
var c = $(this.grid).jqxGrid("columns").records[b].datafield;
var d = this.rendersizes[b];
var e = d * a / 100;
$(this.grid).jqxGrid("setcolumnproperty", c, "width", e);
}
$(this.grid).jqxGrid({
width: a - 2
})
};
Container it’s a div with width 98% so i resize the div. In the version 2.4.0 this works fine ! i would like to share a image but i don’t know how to attach a image.
That’s the other part of my code…
$(migrid.grid).jqxGrid({
width: "100%",
source: dataAdapter,
editable: true,
altrows: true,
enablehover: true,
enabletooltips: true,
columnsresize: true,
enableanimations: true,
keyboardnavigation: true,
autoheight: true,
pageable: false,
columnsresize: true,
theme: "classic",
editmode: "selectedcell",
selectionmode: "singlecell",
ready: function () {
migrid.setRenderGrid()
},
columns: [{
text: "",
columntype: "checkbox",
width: 10,
datafield: "ready",
cellbeginedit: isCellEditable
},
........ others columns
});