Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6102155
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T13:34:55+00:00 2026-05-23T13:34:55+00:00

In MVP pattern the widget (the view) exposes its widgets in form like this:

  • 0

In MVP pattern the widget (the view) exposes its widgets in form like this:

@Override    
public HasClickHandlers getAddIssueClickHandlers() {
            return addIssueButton;
        }

and like:

@Override
public HasText getTaskName() {
    return taskName; // taskName is a Label
}

To allow the presenter to modify the view or get the values from a widget. However, its uncertain how to get a table widget, like FlexTable or CellTable in order for the presenter to modify the table. Any ideas is much appreciated. Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T13:34:56+00:00Added an answer on May 23, 2026 at 1:34 pm

    Not all GWT widgets were designed with these interfaces (i.e. HasclickHandlers, HasText, IsWidget, etc) in mind.
    In recent GWT versions the basic widgets were changed so that they implement these interfaces in order to make the views which use them testable in unit tests. So I am not sure if the FlexTable implements these interfaces but in case of CellTable you can use the HasData interface.

    Here you can find the interfaces that are implemented by the CellTable: Javadoc

    I personally would expose the CellTable via the HasData interface, which can be used to set and retrieve the selectionModel (for selecting rows in the CellTable).
    For modifying or updating the data that is displayed in the CellTable, I would use a ListDataProvider and store it in the Presenter.

    @Override    
    public HasData getCellTableDisplay() {
                return cellTable;
    }
    

    and in the constructor of the presenter
    you can create a ListDataProvider and use the addDataDisplay function to add the CellTable:

    final ListDataProvider<String> dataProvider = new ListDataProvider<String>();
    dataProvider.addDataDisplay(getView().getCellTableDisplay);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm reading about ASP.net MVP pattern over this weekend and it seem like even
I'm implementing a project in MVP pattern and I've got some interfaces like this:
I've recently switch to MVP pattern with a Passive View approach. I feel it
I am trying to implement the MVP pattern for WINFORMS. Its a simple for
Suppose I'm implementing an MVP pattern and I have a view interface as such:
I'm developing an asp.net (classic) application trying to implement the MVP pattern using this
Using GWT with the MVP pattern , I'd like to have a place that
I'm using MVP pattern, so I have a View that has almost no logic
I'm using GWT 2.4 with the MVP pattern, with uiBinder, and a widget: GwtUploader.
In MVP pattern, a Presenter has an interface of View so the presenter can

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.