Frage

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.

War es hilfreich?

Lösung

Use the HTML special character instead.

Δ

$('#id').jqGrid ({
colNames : [
        'sl.no',..., 'Δ'
    ]
})
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top