Announcement

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

    [bug] getEventHoverHTML isn't called in compact calendar

    smartclient power 8.2p

    in a compact calendar, as in sample SmartClient_Explorer.html#compactCalendar
    the override of getEventHoverHTML isn't called
    tested with chrome and firefox

    #2
    any updates on this issue?

    as of SNAPSHOT-2012-02-14_v82p is still there.

    to be more specific, getEventHoverHTML isn't called in the month view
    Last edited by claudiobosticco; 15 Feb 2012, 09:10.

    Comment


      #3
      double checking the docs, I fear that this is by design, because in the month view there isn't a eventWindow. Is this correct?

      So, I've tried to override cellHoverHTML of the monthView:
      Code:
      monthViewProperties:{
        cellHoverHTML:function (record, rowNum, colNum) {
          isc.logEchoAll(record['event' + (colNum + 1)], 'day events')
        }
      }
      is it a correct/supported approach?
      Last edited by claudiobosticco; 16 Feb 2012, 02:18.

      Comment

      Working...
      X