cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Sap mdk objectcell

gvishjoshi
Explorer
0 Likes
882

Hi

 On Iphone, when statustext and substatustext properties of objectcell are populated, the title and description get truncated although lot of space is available on the row

Also how too show multiple tags one below other rather than in a single line

How can this be avoided

Regards

mobile development kit client 

Accepted Solutions (0)

Answers (3)

Answers (3)

Jitendra_Kansal78
Product and Topic Expert
Product and Topic Expert

@gvishjoshi 

You mentioned there is lot of space available on the row when defining the statustext and substatustext properties of objectcell. Where exactly do you see this space?

What you are observing in your screenshot reflects the expected design: tags will appear on a single line.

 

panushjain
Product and Topic Expert
Product and Topic Expert
0 Likes

Reduce the characters in the `statustext` and `substatustext` properties and ensure that the title and subtitle on the left side do not get truncated, you can follow these steps. Additionally, remember that list pages are designed to provide a brief overview, and detailed views should be accessible through the `OnPress` event. Here is a refined approach to achieve this:

1. Shorten `statustext` and `substatustext`:

  • Change "This is the status text" to "Status".
  • Change "This is the SubStatus text" to "SubStatus".

2. Ensure brevity and clarity:

  • Keep all ObjectCell properties short and crisp, as text wrapping is not yet supported.

3. Navigation to detailed view:

  • Use the `OnPress` event to navigate to a new page for detailed information.

Here is an example:

 

 

{
  "ObjectCell": {
    "title": "Item Title",
    "subtitle": "Item Subtitle",
    "statusText": "Status",
    "substatusText": "SubStatus",
    "OnPress": "/path/to/Details.page"
  }
}

 

 

On the detailed page (`DetailsPage`), you can provide more comprehensive information. This approach ensures that the list pages offer a concise overview while allowing users to access detailed information as needed.

By keeping the ObjectCell properties short and crisp, you avoid truncation issues and maintain a clean, user-friendly interface.

gvishjoshi
Explorer
0 Likes

Hi

Please see the attached example

Regards