You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 26, 2019. It is now read-only.
If you look at HomeView.java, you'll see that it uses a Grid (think table) to display the list of badge types. The Grid control has a lot of features, which unfortunately makes it slower than just straight HTML in a Label control.
Switch out the Grid passTypesTable for a Label, and populate the label with the same information in a HTML table. You can see an example of this is AttendeeReportView.java (the report's view) and AttendeeReportPresenter.java (the presenter)
It would probably make more sense (architecturally) to build the HTML in the view.
You can keep the table simple/ugly if it makes things easier. You can add CSS classes to the styles.scss file, but it's kind of a pain unless you've done it a few times.
Sounds good. I feel relatively comfortable with HTML and CSS, so this was probably a good assignment for me to start with. I don't know my schedule for this week, but I am hoping to be able to do a little at work and my wife and I are trying to figure out a night a week for me to look into professional development.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
For performance, the Table on the Home view could be a static table in a Label instead of an actual Vaadin Table/Grid.
The text was updated successfully, but these errors were encountered: