Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    DrawPane click not firing

    When we upgraded to load SmartClient Version: v8.3p_2014-02-09/Pro Deployment (built 2014-02-09) click events do not seem to be firing on the DrawPane. I can get click events on DrawItems within the DrawPane but not the DrawPane itself.

    This code was working in load from 2013-05-07

    My code snippet is:
    drawPane = isc.DrawPane.create({
    styleName: this.styleName + "__item",
    autoDraw:true,
    height: this.watchItemHeight_n,
    canDrag: false,
    cursor: null,
    itemData: aInData,
    overflow: "hidden",
    contextMenu: this.watchItemMenu_o,
    datasource_o: this.datasource_o,
    showContextMenu: function()
    {
    lthis.eventWatchItem_o = this;
    return this.Super("showContextMenu");
    },
    click: this.watchItemClick,
    canHover: true,
    showHover: true,
    hoverDelay: 500,
    hoverStyle: this.styleName + "__details"
    });

    #2
    You should plan an upgrade to 9.0/9.1, where this issue has been fixed for a long time. However, we have just ported the fix back to 8.3, and it will be in tomorrow's builds.

    Comment

    Working...
    X