render method

DIVElement render()

Implementation

DIVElement render() => $div(
        classes: 'ui-calendar-day-events-cell',
        style: 'cursor: pointer;',
        content: [
          $span(
              style: 'font-size: 90%',
              content: description.isNotEmpty ? '$title:<br>' : title),
          if (description.isNotEmpty)
            $span(style: 'font-size: 70%', content: description)
        ]);