Skip to content

Commit

Permalink
#59: let Grid implement ItemClickNotifier
Browse files Browse the repository at this point in the history
  • Loading branch information
Henri Kerola committed Feb 12, 2015
1 parent 629e994 commit 98313f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addon/src/main/scala/vaadin/scala/Grid.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import vaadin.scala.Grid._
import vaadin.scala.renderer.mixins.RendererMixin
import collection.JavaConverters._
import scala.reflect.ClassTag
import vaadin.scala.event.{ SortNotifier, SelectionNotifier }
import vaadin.scala.event.{ ItemClickNotifier, SortNotifier, SelectionNotifier }
import vaadin.scala.renderer.{ TextRenderer, Renderer }
import vaadin.scala.converter.Converter

Expand Down Expand Up @@ -205,7 +205,7 @@ object Grid {
* @author Henri Kerola / Vaadin
*/
class Grid(override val p: VaadinGrid with GridMixin)
extends AbstractComponent(p) with SelectionNotifier with SortNotifier {
extends AbstractComponent(p) with SelectionNotifier with SortNotifier with ItemClickNotifier {

def this() {
this(new VaadinGrid(new IndexedContainer().p) with GridMixin)
Expand Down

0 comments on commit 98313f3

Please sign in to comment.