jQWidgets Forums

jQuery UI Widgets Forums Grid Disabling tooltip

Tagged: 

This topic contains 8 replies, has 5 voices, and was last updated by  mallepaddi 11 years, 4 months ago.

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
  • Disabling tooltip #24111

    prabhu
    Member

    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.

    Disabling tooltip #24119

    Mariya
    Participant

    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,
    Mariya

    jQWidgets Team
    http://www.jqwidgets.com

    Disabling tooltip #24120

    prabhu
    Member

    I 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.

    Disabling tooltip #24121

    Mariya
    Participant

    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,
    Mariya

    jQWidgets Team
    http://www.jqwidgets.com

    Disabling tooltip #24123

    prabhu
    Member

    Hi 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,
    Kishore

    Disabling tooltip #24125

    Mariya
    Participant

    Hi 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,
    Mariya

    jQWidgets Team
    http://www.jqwidgets.com

    Disabling tooltip #49236

    Kumari Aruna
    Participant

    Hi,

    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
    Aruna

    Disabling tooltip #49239

    Peter Stoev
    Keymaster

    Hi 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 Stoev

    jQWidgets Team
    http://www.jqwidgets.com

    Disabling tooltip #49263

    mallepaddi
    Participant

    Hi

    To disable tooltip for a particular column set : enabletooltips:false, at column level.

    Thanjs

Viewing 9 posts - 1 through 9 (of 9 total)

You must be logged in to reply to this topic.