nayansFosgit
nayansFosgit

Reputation: 71

Unable to import Table in Vaadin8

I just tried to create a Table in my Vaadin 8 project:

Table table = new Table("The Brightest Stars");
table.addContainerProperty("Name", String.class, null);

I have only added the following dependency:

<dependency>
    <groupId>com.vaadin</groupId>
    <artifactId>vaadin-server</artifactId>
    <version>8.12.4</version>
</dependency>

Can anyone help me for finding the right dependency or cause of this problem

Upvotes: 0

Views: 58

Answers (1)

Marcus Hellberg
Marcus Hellberg

Reputation: 1923

You need to use the vaadin-compatibility-server dependency to have access to Table https://vaadin.com/docs/v8/framework/migration/migrating-to-vaadin8.html

Upvotes: 1

Related Questions