hobbyquaker / homematic-manager

Homematic Device Configuration and Administration
GNU General Public License v3.0
188 stars 27 forks source link

HTML in Grids gets escaped #57

Closed hobbyquaker closed 6 years ago

hobbyquaker commented 6 years ago

instead of icons and buttons html code is shown... Issue affects the build only, doesn't occur in debug mode.

ch-world commented 6 years ago

You're using an old version of jqGrid in your dev environment. In starting with free-jqgrid 4.15 they activated auto escaping of values. I fixed temporarily by adding:

jQuery.extend(jQuery.jgrid.defaults, { autoencode: false });

hobbyquaker commented 6 years ago

Thx for the hint! 👍