We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Hi,
I am currently using version 4.15.5 and populating subgrids via JSON requests. There is a bug where fields with zero as value show up blank.
The problem lies in fillJsonBody() in jquery.jqgrid.src.js:18711. The problematic lines are:
fillJsonBody()
jquery.jqgrid.src.js:18711
subGridCell($tr, cur[j] || " ", j);
and:
subGridCell($tr, jgrid.getAccessor(cur, f[j]) || " ", j);
The issue also occurs when the value is false.
false
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I am currently using version 4.15.5 and populating subgrids via JSON requests. There is a bug where fields with zero as value show up blank.
The problem lies in
fillJsonBody()
injquery.jqgrid.src.js:18711
. The problematic lines are:subGridCell($tr, cur[j] || " ", j);
and:
subGridCell($tr, jgrid.getAccessor(cur, f[j]) || " ", j);
The issue also occurs when the value is
false
.The text was updated successfully, but these errors were encountered: