Hiding columns

Hi,

I am looking to hide/show different columns within an inline view in my app. I have two different order types:

  • Daily Request
  • Bulk Order

These each have their own associated status

  • Daily Request = Request Status
  • Bulk Order = Installed Status

Although they are two separate order types I have the data held on one table; an Order Details Tbl. So, each Order has related Order Details but an Order will either be for multiple daily requests or multiple bulk orders. Showing Installed statusโ€™ for Daily Requests is not required as they are blank values and likewise with Request statusโ€™ for Bulk Orders.

Currently the inline view is showing both columns and its not visually appealing to the user, is there anyway I can hide the irrelevant status? I do already have a Show_If constraint for each status depending on the Request type but that doesnโ€™t seem to apply to inline views? This is an example of the inline view, as shown the Request Status column is blank as this Order is associated with Bulk Orders.

2X_0_00bd1cb27c4188b165af36fa47bc9fabc95c70f2.png

0 9 939
  • UX
9 REPLIES 9

Create a normal (or virtual column) with an app formula like [Request_Status]&[Installed_Status]. Then instead of showing both columns, show just this extra column.

Thanks Aleski, I understand what this is trying to achieve but I think the way in which I have set up the two statusโ€™, concatenating the values sets a default value for the irrelevant status.

So instead of just showing the status that is relevant and having a blank value for the other, its setting the value its joining with e.g. The Request Status of the Daily Request is โ€˜Orderedโ€™ but the โ€˜Not Yet Drawn Offโ€™ is actually a default value from Installed status. The two status columns are virtual and contain an IFS formula to update when data is changing in the app, they donโ€™t have initial values set but concatenating the two is causing this.

2X_4_413dd3d8f90e7b6be4a815f38b1a00ef9c951f91.png

Okayโ€ฆ I understood that you have either one of them, not both statuses. If you need to show both statuses, you could combine them with one virtual column with a suitable IF expression.

Is there issues hiding columns that contain app formula? Because the values are being hidden from view but the actual column/header remains?

The option UX > Options > Apply show-if constraints universally is probably set as ON

Yes, I checked earlier its on

Set is as OFF and then it should not show blank fields.

Why does it need to be OFF?
If we set it to off, then that means the show if expressions will only apply to forms.
But I think the idea is that the show if expressions should apply to all views, whether form, deck, or table.

Care to clarify?

What are you trying to accomplish?

Top Labels in this Space