jQWidgets Forums
jQuery UI Widgets › Forums › Grid › Disabling tooltip
Tagged: jqxgrid
This topic contains 8 replies, has 5 voices, and was last updated by mallepaddi 11 years, 4 months ago.
-
AuthorDisabling tooltip Posts
-
Hi, How do i disable a perticular column in a jqxGrid. By setting the property enabletooltips: true we get tooltip messages for all columns. Is there a way to disable tooltip messge for a column.
Hi prabhu,
It is not possible to disable tooltip for one column. What do you mean by ‘disable a particular column’ because if your purpose is to have a non-editable column we have a similar demo at: http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/celleditmodes.htm?web
Best Wishes,
MariyajQWidgets Team
http://www.jqwidgets.comI meant that I have a jqxgrid with many columns and rows. I need to disable tooltip message for all the rows of 1st column. When I enable tooltip ,on mouse over I am shown the value of the cell. But I dont want anything to be shown on mouse over. Please assist.
Hi prabhu,
The ‘enableTooltip’ property is working for the whole jqxGrid. Due to that it is impossible to disable it for one column only .
Best Wishes,
MariyajQWidgets Team
http://www.jqwidgets.comHi Maria,
Thanks for your reply. I got ypur answer. But is there any way around to override the tooltip message that i show for the rows of a column. My business requirement says that I dont have to show anything over a tooltip up on mouse over. Atleast a work around to override the tooltip message would be of great help.
Thanks in advance,
KishoreHi prabhu,
Unfortunately it is not possible to override the tooltip message because it always shows the written message in the cell. The only thing that you can do is to disable the tooltip for the whole jqxGrid.
Best Wishes,
MariyajQWidgets Team
http://www.jqwidgets.comHi,
My issue is whenever I try to enable tool tip for one particular column the ellipsis feature on that column disabled.(means: if I do enableellipsis: true for the grid. This is applicable for the grid (all columns )but disappear only for that particular column on which I apply tooltip feature).
code is
var cellsrenderer = function (row, columnfield, value, defaulthtml, columnproperties) {
return “<div style=’margin-left: 10px; margin-top: 5px;’ title='” + value + “‘>” + value + “</div>”;
}and
enableellipsis: true,
columns:[
{ text: <js:string>some value</js:string>, width:’15%’, align:’center’, cellsrenderer: cellsrenderer}ellipsis feature disappear for the above column only.
Please Help.
Regards
ArunaHi Aruna,
Ellipsis is a built-in rendering feature. By overriding the Cells Rendering by defining the “cellsrenderer” callback function, you will lose the built-in rendering.
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.comHi
To disable tooltip for a particular column set : enabletooltips:false, at column level.
Thanjs
-
AuthorPosts
You must be logged in to reply to this topic.