I have a unique scenario in a JQgrid here. I am trying to load some data into jqGrid. The data is successfully loaded into the grid. The issue is when i hover on a particular column of a row the tooltip appears. I am able to see all the tooltip which has a normal text but when the text has a "<" character to tooltip gets truncated hence entire text isn't visible. Could you please suggest ??
Asked
Active
Viewed 541 times
0
-
got the solution .... simply replace "<" with "<". It will work. – Indranil Basu Dec 17 '12 at 11:41
1 Answers
1
Probably you didn't used the option autoencode: true
which is strictly recommended if you can't guarantee that the texts in grid don't contains special characters used in HTML.
See the demo:

Oleg
- 220,925
- 34
- 403
- 798
-
Hello Oleg, link given here redirects to other demo, please update the link. – IT ppl Dec 17 '12 at 11:59
-
@ITppl: You are right. I unanswered on many questions at the same time. I updated the link to the demo. In general [the demo](http://www.ok-soft-gmbh.com/jqGrid/TooltipWithSpecialCharacters.htm) has no important code other as the option `autoencode: true` which I described in the answer. – Oleg Dec 17 '12 at 13:31