jQWidgets Forums

jQuery UI Widgets Forums Navigation Tabs Breadcrumb

This topic contains 2 replies, has 2 voices, and was last updated by  Kynao 12 years, 6 months ago.

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Breadcrumb Posts
  • Breadcrumb #12022

    Kynao
    Participant

    Tabs control is cool. In a place, i would like to use the control as a breadcrumb system so even presented this way i would still benefit of collapsible, loading tabs content with ajax, scrolling, save/load selection using cookies and settings.

    The achievement needs 2 things.
    – Visually : It just has to look like breadcrumb which is even simpler than a tab. Is it possible ?
    – On mouse over each breadcrumb entry (tab in fact), i would like to open a mega menu containing other controls. Do we have mouse over event for tabs ?

    Breadcrumb #12027

    Dimitar
    Participant

    Hello Kynao,

    1) To see how to change the appearance of jqxTabs, please check the documentation entry Styling and Appearance.

    2) There is no built-in mouseover event for jqxTabs. However, you can use jQuery’s mouseover event on tabs titles as follows:

                $(".jqx-tabs-title").mouseover(function (event) {
    alert(event.target.innerText);
    });

    Best Regards,
    Dimitar

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

    Breadcrumb #12081

    Kynao
    Participant

    Thanks you Dimitar, you’re of great help. I will try that

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

You must be logged in to reply to this topic.