[CLOSED] Gridpanel - tooltip content rendered incomplete

  1. #1

    [CLOSED] Gridpanel - tooltip content rendered incomplete

    Hi,
    Mine is an Asp.net MVC Razor view engine application.
    I have a gridpanel to which I have applied tooltip.

    Following is the markup and js for Tooltip.

    @(Html.X().ToolTip()
        .Target("={#{grdUDR}.getView().el}")
        .Delegate(".x-grid-cell")
        .TrackMouse(true)
        .Listeners(ls => ls.Show.Handler = "onShow(this, #{grdUDR});")
    )
     var onShow = function (toolTip, grid) {
            if (grid.getView().getHeaderByCell(toolTip.triggerElement) != null) {
                var view = grid.getView(),
                    store = grid.getStore(),
                    record = view.getRecord(view.findItemByChild(toolTip.triggerElement)),
                    column = view.getHeaderByCell(toolTip.triggerElement),
                    data = record.get(column.dataIndex);
                if (data == undefined || data == "") {
                    toolTip.hide();
                    return false;
                }
                else {
                    toolTip.update(data);
                }
            }
            else {
                toolTip.hide();
                return false;
            }
        };
    Issue - tooltip content is getting rendered incomplete.
    This behavior is random, that is for few cells it renders complete whereas for few it renders incomplete.

    Below are the snapshots for reference.





    Attached Thumbnails Click image for larger version. 

Name:	Tooltip content incomplete1.png 
Views:	24 
Size:	3.6 KB 
ID:	16191   Click image for larger version. 

Name:	Tooltip content incomplete2.png 
Views:	25 
Size:	2.8 KB 
ID:	16201   Click image for larger version. 

Name:	Tooltip content incomplete3.png 
Views:	19 
Size:	1.9 KB 
ID:	16211  
    Last edited by Daniil; Nov 18, 2014 at 5:29 PM. Reason: [CLOSED]
  2. #2
    Hi @PriceRightHTML5team,

    I guess it might be related to this:
    https://github.com/extnet/Ext.NET/issues/189

    What Ext.NET version are you using? It might be fixed since v2.3 inclusive.
  3. #3
    Hi Daniil,
    We are using version number 2.2.0.26551
  4. #4
    Please test with v2.3 or later.
  5. #5
    Hi Daniil,
    As our application is in production. Thus, we can't go with version changes.

    Kindly provide us with the specific fix or provide details of the respective file where we can get the fix.
  6. #6
    Well, I don't ask to push it into production, please test only. We need to narrow the problem down first.

Similar Threads

  1. Replies: 3
    Last Post: Jan 17, 2014, 12:29 PM
  2. [CLOSED] pagingtoolbar texts are incomplete in Gridpanel
    By JCarlosF in forum 2.x Legacy Premium Help
    Replies: 1
    Last Post: Apr 20, 2013, 1:27 AM
  3. Replies: 1
    Last Post: Oct 16, 2010, 6:53 PM
  4. Replies: 2
    Last Post: May 05, 2010, 10:23 AM
  5. Replies: 3
    Last Post: Mar 01, 2010, 4:55 AM

Tags for this Thread

Posting Permissions