Skip to main content



      Home
Home » Eclipse Projects » Eclipse Scout » displaying the content of table page on a smartphone
displaying the content of table page on a smartphone [message #1816746] Wed, 06 November 2019 04:33 Go to next message
Eclipse UserFriend
Hi,
I noticed that displaying the page inheriting from AbstractPageWithTable in a smartphone (mobile version), the related table shows:

  • Row icon (if returned e.g. by the getConfiguredRowIcon method)
  • Only one column (with the lowest @Order value) regardless of the actual number of columns in the table, visible on the PC. Only after selecting a given row its additional data from other columns are presented.


My question:
Is it possible to present more columns or indicate which column should be presented in the view of this table on the smartphone?

[Updated on: Wed, 06 November 2019 08:04] by Moderator

Re: displaying the content of table page on a smartphone [message #1816868 is a reply to message #1816746] Fri, 08 November 2019 17:41 Go to previous messageGo to next message
Eclipse UserFriend
Hi

The data shown is computed based on the property summary of a column. When setting it to true the content of these columns are used for the navigation tree. For mobile it is actually the same tree but with the display style breadcrumb.

I am not sure but maybe you could even use html inside a cell of a summary column (with the property htmlEnabled set to true). This would allow you to define custom mobile optimized content.

Best regards
Claudio
Re: displaying the content of table page on a smartphone [message #1820747 is a reply to message #1816868] Tue, 28 January 2020 05:15 Go to previous message
Eclipse UserFriend
Thanks Claudio!
Using the method you mentioned on columns declarations solved my problem as follows:
protected boolean getConfiguredSummary() {
	return true;
}
Previous Topic:Maximizing the size of the form
Next Topic:calling the web service directly from the client module
Goto Forum:
  


Current Time: Wed Jul 23 13:38:42 EDT 2025

Powered by FUDForum. Page generated in 1.04047 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top