Tony, my image path on jqGrid is set to:
imgpath: '../../Content/StyleSheets/Screen/jQuery/basic/images',
error on line 930 on grid.formedit.js:
var clicon = p.imgpath ? p.imgpath+'/'+p.closeicon : p.closeicon;
but when I trace grid.formedit.js, line 930 does the folliowing:
p.imgparth = “../../Content/StyleSheets/Screen/jQuery/basic/images/“
so somewhere in the call to createModal the imgpath is suffixed with an “/” and your code on 930 adds an additional “/”, so it generates:
clicon = “../../Content/StyleSheets/Screen/jQuery/basic/images//ico-close.gif”
is this a bug or do I need to set something else on my side?
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top