Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mobile Portrait view hides grid column names #124

Open
vaithu opened this issue Sep 8, 2020 · 0 comments
Open

Mobile Portrait view hides grid column names #124

vaithu opened this issue Sep 8, 2020 · 0 comments

Comments

@vaithu
Copy link

vaithu commented Sep 8, 2020

Hi,

My code is


DatastoreDataProvider<PropertyBox, QueryFilter> allCustomers = customersService.getAllCustomers();
        allCustomers.addQueryConfigurationProvider(this::getQueryFilter);

        listing = Components.listing.properties(Person.PERSON_ID,Person.FULL_NAME)
                .dataSource(allCustomers)
                .flexGrow(Person.PERSON_ID,0)
                .flexGrow(Person.FULL_NAME,1)
                .withSelectionListener(selectionEvent -> selectionEvent.getFirstSelectedItem().ifPresent(this::viewDetails))
                .withThemeName("mobile")
                .fullSize()
                .frozen(Person.PERSON_ID,true)
                .build();

Portrait Image
image

Landscape Image
image

What could be the issue? The DOM parser shows same tag values on both cases.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant