User Profile & Activity

Huy Hoang Member
Hi All,
I found the problem is because of supporting CSS Grid Layout in browser. And there are some code in javascript which use grid value in style.
For example in WebGrid_Edit.js, you will see that
	with (edit.style) { 		if (ignoreSize) { if (wgIsFilterRow(el.parentElement)) { adjLeft -= 20 } } 		var brd = parseInt(grid.FrameObj.currentStyle.borderWidth); ...

and grid value in with case will be considered as css value although it is grid object. The quick fix is change everything from grid to wggrid then the problem will fixed.

	var wggrid = grid; 
        with (edit.style) { if (ignoreSize) { if (wgIsFilterRow(el.parentElement)) { adjLeft -= 20 } } 
		var brd = parseInt(wggrid.FrameObj.currentStyle.borderWidth); ...
See my attached file for fix edit in Webgrid 9 with latest version of chrome and firefox.
Hope Intersoft will release offical hotfix for Webgrid 9.
Thanks
Huy

All times are GMT -5. The time now is 5:39 PM.
Previous Next