How to select different rows at different occassion apart from first row?

here i share a screenshot . in hint component , i like to add a specific row of table . but by default first row get selected .

how to show data of specific row in a component , not only just hint component ?

The easiest way is to start with a Collection component. That will give you a list or table where each item represents a row in the table. Clicking an item in the collection will take to to the details screen for that item (row).

currently i am building a daily routine tracker . let’s say there are 3 daily work i.e. brushing , breakfast , yoga . out of which the user checked breakfast as complete and remaining to remain unchecked .

so i want to show checked work in a box/section . how can i achieve it ?

Can you show me a screenshot of the data table from the Glide Data Editor please?

here is the screenshot of data table . in first column i write routine work and on next column a boolean . for better idea i added a third column STATUS to show the status of work .

now i wish to create a block which will show all the pending work at the end of day .

Okay, so you could probably use a checkbox style collection.

But, here are a couple of questions to consider:

  • Will there be more than one user of the App?
  • You say it is a Daily Routine tracker. That suggests that everything should be reset at the start of each day. Have you thought about how you will do that?
  • Will it be necessary to be able to view data from previous days? If yes, have you thought about that?
1 Like