문제

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.

도움이 되었습니까?

해결책

Use the HTML special character instead.

Δ

$('#id').jqGrid ({
colNames : [
        'sl.no',..., 'Δ'
    ]
})
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top