[CLOSED] ToolTip : Tooltip not showing when page load in panel with loader

  1. #1

    [CLOSED] ToolTip : Tooltip not showing when page load in panel with loader

    Hi
    I load a view in a panel with loader and view contains two images with tooltip

    <ul>
                            <li>
                                <a href="javascript:void(0)" id="a3">
                                    <img src="~/Content/ess/daily_attendance.png" width="40" />
                                    @(X.ToolTip()
                                            .Html("Daily Attendence")
                                            .Target("a3")
                                    )
                                </a>
                            </li>
                            <li>
                                <a href="#" id="a4">
                                    <img src="~/Content/ess/Attendence_Statement.png" width="40" />
                                    @(X.ToolTip()
                                                    .Html("Attendence Statement")
                                                    .Target("a4")
                                    )
                                </a>
                            </li>
    
                        </ul>
    .Loader(
                                X.ComponentLoader()
                                .Url(Url.Action("landing", "essmenu"))
                                .LoadMask(m => m.ShowMask = true)
                                .Params(new Parameter("containerId", "Tab3"))
                                .Mode(LoadMode.Html)
                                )
    tooltip not showing when point mouse on images .
    Last edited by Daniil; Jun 30, 2015 at 2:08 PM. Reason: [CLOSED]
  2. #2
    Hi @matrixwebtech,

    Please post the landing controller action.
  3. #3
    the action method essmenu is just return a view ,like bellow

    public ActionResult essmenu()
    {
    return view("/Areas/folder1/views/landing/essmenu/Index.cshtml");
    }
  4. #4
    Apologize for the delay in answering.

    This code confuses me a little bit:
    public ActionResult essmenu()
    I guess you mean the Controller Action for this:
    .Url(Url.Action("landing", "essmenu"))
    But the second parameter is a Controller's name, not an Action's one.

    I am now not sure how all is configured on your side. Please provide a full test case (but simplified).

Similar Threads

  1. Tooltip not showing on first mouseover
    By capbarbell in forum 2.x Help
    Replies: 4
    Last Post: Jun 06, 2014, 3:13 AM
  2. [CLOSED] Load window via loader without showing?
    By rthiney in forum 2.x Legacy Premium Help
    Replies: 3
    Last Post: Oct 15, 2013, 2:37 AM
  3. [CLOSED] Script error on page with tooltip and master page
    By sisa in forum 2.x Legacy Premium Help
    Replies: 3
    Last Post: Feb 26, 2013, 2:45 PM
  4. Replies: 0
    Last Post: May 11, 2012, 9:02 PM
  5. Replies: 2
    Last Post: May 05, 2010, 10:23 AM

Posting Permissions