Here’s the translation into English:
Currently, in Telegrid, the wrapValues property applies to all fields. Is it possible to make it so that wrapValue can be defined individually for each field?
I found a place in ISC_Grids.js where the code can be inserted.
Currently, in Telegrid, the wrapValues property applies to all fields. Is it possible to make it so that wrapValue can be defined individually for each field?
I found a place in ISC_Grids.js where the code can be inserted.
Code:
output += "<TD CLASS='" + cellStyle + "'" + styleStr + (field.height?"HEIGHT='"+field.height+"' ":"") + onclick + (this.wrapValues || field.wrapValues ? ">" : " NOWRAP><NOBR>") + formattedValue + (this.wrapValues || field.wrapValues ? "" : "<\/NOBR>") + "<\/TD>";