Question

I have a table and i would like to have Δ symbol in one of my header.

$('#id').jqGrid ({
colNames : [
        'sl.no',..., 'Δ'
    ]
})

But rendering i am getting Δ in html.

Please suggest a way to print Δ symbol.

Était-ce utile?

La solution

Use the HTML special character instead.

Δ

$('#id').jqGrid ({
colNames : [
        'sl.no',..., 'Δ'
    ]
})
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top