Tap Forms – Organizer Database App for Mac, iPhone, and iPad › Forums › Using Tap Forms › multiple horizontal objects in list
Tagged: list View
- This topic has 18 replies, 4 voices, and was last updated 5 years, 2 months ago by Brendan.
-
AuthorPosts
-
August 22, 2019 at 8:05 AM #36441
namorParticipantdear all
is it possible to arrange more then one values (number, text) in one row in list view? this would make things much more overlookable. i now have only a couple of small objects on the left side where as 75% per cent of the screen is empty…
thanks for any hints…
August 22, 2019 at 9:46 PM #36444
BrendanKeymasterHi Roman,
If you switch to the Multi-Column view then you can see a spreadsheet view of your list of records.
On Mac, click the Multi-Column button on the View toolbar.
On iOS, tap the action menu button on the records list view, then tap “View Settings”. Then tap on Multi-Column. Tap the Save button.
Thanks!
Brendan
August 23, 2019 at 9:01 AM #36454
namorParticipantbrendan
thanks for your time. i’ve seen the multi column view. and maybe it’s asked too much and too difficult to implement. it would make the list view more powerful because you could see more data at once.
best, roman
August 23, 2019 at 12:09 PM #36455
BrendanKeymasterThe regular List view can also display up to 6 fields. Just vertically. If you want horizontal, that’s what the Multi-Column list view is for.
August 23, 2019 at 12:42 PM #36456
Sam MoffattParticipantIIRC you can customise the multi column list view to hide fields and reorder them. That might reduce down the field listing and be a little easier to manage. Does that help your use case?
August 23, 2019 at 1:13 PM #36457
namorParticipantok, i agree and give up.
August 24, 2019 at 2:32 PM #36472
john cestaParticipantYou mean you want place some fields side by side.
Like
first name. Last name
Street. City. State
Would be nice
August 24, 2019 at 4:14 PM #36474
namorParticipantexactly. nothing essential but nice and practical.
August 25, 2019 at 2:31 AM #36481
BrendanKeymasterYou could simulate that with a Calculation or Script field to concatenate the values.
August 26, 2019 at 4:26 AM #36503
Sam MoffattParticipantI use the calculation field approach myself for embedding extra information into the single column list view. My field order for my purchases form:
– photo – having a photo field first means Tap Forms puts the image in the row for me.
– title – string title for the item I purchased
– subtitle – this is a calculation field that joins up to three other fields together (see attachment) to output something like “Delivered / Red / Clothing” in the SCLV.The list is set to use two rows so that the title and subtitle render along side the image.
You could use a set of calculation to do this as well though it would mean that the first two fields would be read only.
To work around that, you can set those calculation fields to be hidden by ticking “Hide Field” and at least in my quick testing, this will hide it from the default layout but still show them in the SCLV.Edit: did some more testing and “Hide Field” also removed it from the SCLV display once you navigate around a bit. Looks like it doesn’t immediately refresh the list view like it does the record.
Attachments:
You must be logged in to view attached files.August 26, 2019 at 5:48 AM #36508
namorParticipant@sam
thanks a lot. this is very helpful!
i didn’t see, we can make a field invisible!
is this possible in the ios version, too?
and where do i put the attached?
best from zurich, roman
August 26, 2019 at 6:00 AM #36510
namorParticipant…the attached code…
August 26, 2019 at 1:24 PM #36515
Sam MoffattParticipantCreate a new calculation field, in the form options you can set it up. Here’s a quick recording of how do that with a calculation field.
Looks like I hit a bug/quirk that commas, even in the quoted strings, seem to trigger something. That one’s for Brendan to look at.
To work around that, I also did a similar example using a script field. It’s a little more verbose but I find the script fields easier to work with than the calculation fields because it has better error reporting (easier to know what you did wrong). That’s probably less likely if you don’t learn JavaScript but there are plenty of resources on the web to learn JavaScript.
As you can see, both of the calculation fields update the list view on the left to display the composite data. Hopefully this helps!
Edit: Had to trim the calculation field recording to get it to fit under the file size limit. I attached a screenshot of what the final calculation that worked looked like (I ended up doing some experimenting with field separators).
Attachments:
You must be logged in to view attached files.August 26, 2019 at 2:00 PM #36521
namorParticipantdear sam
wow, very cool!
as i’m currently on the ios version
only, this is going to be difficult
to implement, right?but anyway. great stuff, thanks a
lot for your time, rAugust 26, 2019 at 3:11 PM #36523
Sam MoffattParticipantYou can do the same on the iOS version as on the Mac, in the calculation editor you need to use
[Field Name]
instead of clicking on the fields and also you need to make sure you use the quote button above the keyboard to avoid inserting smart quotes.The examples above in the iOS calculation editor would be
CONCAT([First Name];" ";[Last Name])
andCONCAT([Street];" ";[City];" ";[State])
.Doing the script example on iOS is a few extra taps to select the fields but not that bad. I prefer script fields because of the better error reporting and testability (just click the “run” button to see if the field will work; make sure you’re on a record first though or you’ll get an error that
record
isn’t defined or similar). I wouldn’t want to do a lot of script or calculation field work on iPhone but on the iPad it isn’t too bad if you have a full keyboard. I’ve written some pretty crazy stuff on the phone but doing it on the desktop and using P2P sync or CouchDB sync is much easier.Attached is a video of doing a new script field on my iPhone in one of my test databases, reordering it to make sure it’s the first and then going to the list view on the phone.
Attachments:
You must be logged in to view attached files.August 27, 2019 at 12:09 AM #36526
BrendanKeymasterYou also don’t have to use the
CONCAT()
method as you can just add the fields together:[First Name] + " " + [Last Name]
August 27, 2019 at 3:00 AM #36532
namorParticipantdear brendan
thanks a lot! i could add the fields together easily
but i could find out yet how to hide the field in the form.i have some other fields that i would like to hide as
an ascending number i use for a calculation that doesn’t
have to show up.is there a simple script?
best, roman
August 27, 2019 at 3:18 PM #36541
Sam MoffattParticipantI use
CONCAT
because if one of the fields are empty, the calculation field still works properly and leaves that field blank. If I use the simple addition operator, one empty field will tank the entire calculation. Then you need to guard each read with anIFEMPTY()
and at that point theCONCAT
is shorter in some cases. Screenshot with the impact of leaving a few fields empty along the way.Attachments:
You must be logged in to view attached files.August 27, 2019 at 9:42 PM #36560 -
AuthorPosts
You must be logged in to reply to this topic.