Changes in the way grid stores cell style in json data
In previous versions, static styles of cells are stored in rowData.pq_cellattr[ dataIndx ].style
and static styles of rows are stored in rowData.pq_rowattr.style
In current version, static styles of cells are stored in rowData.pq_cellstyle[ dataIndx ]
and static styles of rows are stored in rowData.pq_rowstyle
Style can be stored in object format i.e., { 'font-weight': 'bold', background: '#ff0000' }
or
string format i.e., 'font-weight:bold;background:#ff0000;'
.
Object format is recommended over string format.