Domanda

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.

È stato utile?

Soluzione

Use the HTML special character instead.

Δ

$('#id').jqGrid ({
colNames : [
        'sl.no',..., 'Δ'
    ]
})
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top