jQWidgets Forums

jQuery UI Widgets Forums Grid Tooltip in a row grid

Tagged: , , ,

This topic contains 1 reply, has 2 voices, and was last updated by  Dimitar 11 years, 11 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • Tooltip in a row grid #23436

    jofelanca
    Member

    How to enable tooltip for each row of the grid? The grid has Id and price and want to put the tooltip in the column Id. Thanks

    var source = {
    datafields: [ { name: ‘Id’ },
    { name: ‘Price’ },
    { name: ‘Description’ },
    ],
    url: ‘@Url.Action(“GetTike”, “Timesheet”)’,
    datatype: “json”,
    cache: false,
    type: “POST”
    };

    $(“#jqxGridTike”).jqxGrid({
    width: ‘100%’,
    source: source,
    theme: ‘tike’,
    pageable: true,
    autoheight: true,
    altrows: true,
    columns: [ { text: ‘Id’, datafield: ‘Id’, width: ‘8%’,
    { text: ‘Price’, datafield: ‘price’, width: ‘8%’ },
    ]
    });

    Tooltip in a row grid #23465

    Dimitar
    Participant

    Hello jofelanca,

    Custom tooltips are not supported by jqxGrid. The default cell tooltips can be enabled by setting the property enabletooltips to true.

    Best Regards,
    Dimitar

    jQWidgets team
    http://www.jqwidgets.com/

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

You must be logged in to reply to this topic.