# Favorites bar?

**URL:** https://community.glideapps.com/t/favorites-bar/33208
**Category:** Ask for Help
**Created:** [October 17, 2021, 9:20pm UTC](https://community.glideapps.com/t/favorites-bar/33208 "2021-10-17T21:20:10Z")
**Posts on this page:** 20
**Page:** 1

<div class="post-metadata">

### Author: ![meganb](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/meganb/32/16632_2.png) [@meganb](https://community.glideapps.com/u/meganb)
#### Post date: [October 17, 2021, 9:20pm UTC](https://community.glideapps.com/t/favorites-bar/33208/1 "2021-10-17T21:20:10Z")

</div>

I’m losing my mind over here. Does anyone know of a tutorial video on how to make favorites work?

---

<div class="post-metadata">

### Author: ![meganb](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/meganb/32/16632_2.png) [@meganb](https://community.glideapps.com/u/meganb)
#### Post date: [October 17, 2021, 9:21pm UTC](https://community.glideapps.com/t/favorites-bar/33208/2 "2021-10-17T21:21:31Z")

</div>

To clarify, I have the user log in turned on, and I want each user to be able to see their own personal favorites when they are logged in.

---

<div class="post-metadata">

### Author: ![meganb](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/meganb/32/16632_2.png) [@meganb](https://community.glideapps.com/u/meganb)
#### Post date: [October 17, 2021, 9:42pm UTC](https://community.glideapps.com/t/favorites-bar/33208/3 "2021-10-17T21:42:30Z")

</div>

I added the heart feature into the section where I want it, but when a user is logged in, where does that info go after they click it?

---

<div class="post-metadata">

### Author: ![Wiz.Wazeer](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/wiz.wazeer/32/72423_2.png) [@Wiz.Wazeer](https://community.glideapps.com/u/Wiz.Wazeer)
#### Post date: [October 17, 2021, 10:20pm UTC](https://community.glideapps.com/t/favorites-bar/33208/4 "2021-10-17T22:20:54Z")

</div>

Favourite ❤ heart

1. Make sure the column storing the heart is a user specific column. Only user will see heart unless someone else signs in as the user user. The value is not stored in the sheet.

2. It column storing value is a non-user specific column, next person who clicks on heart can change it from like to dislike, for example. If a glide table column then visible in glide table; if sheet, then sheet.

3. If you apply rowID, doesn’t matter whether column user specific or not.

---

<div class="post-metadata">

### Author: ![Wiz.Wazeer](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/wiz.wazeer/32/72423_2.png) [@Wiz.Wazeer](https://community.glideapps.com/u/Wiz.Wazeer)
#### Post date: [October 17, 2021, 10:29pm UTC](https://community.glideapps.com/t/favorites-bar/33208/5 "2021-10-17T22:29:21Z")

</div>

> [@Questions About Favorites](https://community.glideapps.com/t/questions-about-favorites/20370/6):
>
> Are you sure you aren’t confusing a List Style layout vs and Inline List??? Inline List components have never shown the All/Favorites tabs. All/Favorites only shows when the tab layout style is one of the list styles. I still don’t fully understand what you are saying. You would never display a list as a detail…it’s a list… When you click on a list item, then you are viewing the details. I think you need to be aware when you are looking at the tab layout vs the inline list component layout…

You will find more on how to with favourites in list style.

---

<div class="post-metadata">

### Author: ![Wiz.Wazeer](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/wiz.wazeer/32/72423_2.png) [@Wiz.Wazeer](https://community.glideapps.com/u/Wiz.Wazeer)
#### Post date: [October 17, 2021, 10:36pm UTC](https://community.glideapps.com/t/favorites-bar/33208/6 "2021-10-17T22:36:19Z")

</div>

To clarify, I have the user log in turned on, and I want each user to be able to see their own personal favorites when they are logged in.

Add a text or number component to display their like/dislike. It’s stored as value of 1 or -1. You can translate the values to text by adding an if-then-else column. If 1 then like, else dislike.

But you wouldn’t need to do that as the heart will be either red or dead.

---

<div class="post-metadata">

### Author: ![Jeff\_Hager](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/jeff_hager/32/43_2.png) [@Jeff\_Hager](https://community.glideapps.com/u/Jeff_Hager)
#### Post date: [October 18, 2021, 12:06am UTC](https://community.glideapps.com/t/favorites-bar/33208/7 "2021-10-18T00:06:36Z")

</div>

> [@Wiz.Wazeer](#):
>
> If you apply rowID, doesn’t matter whether column user specific or not.

This isn’t true. User specific columns require a row id. Maybe not necessarily with glide tables, since they have a built in row I’d regardless if it’s visible or not. Either way…for favorites to work properly, the receiving column needs to be user specific.

@meganb if you want to see favorites on the user profile screen, then you can add an inline list that’s filtered where the isFavorite column is true.

---

<div class="post-metadata">

### Author: ![Wiz.Wazeer](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/wiz.wazeer/32/72423_2.png) [@Wiz.Wazeer](https://community.glideapps.com/u/Wiz.Wazeer)
#### Post date: [October 18, 2021, 2:11am UTC](https://community.glideapps.com/t/favorites-bar/33208/8 "2021-10-18T02:11:55Z")

</div>

If row has rowID why do you need a user specific column to make a like register since no one else can acces that row except the user?

Or because user is liking someone else’s rowID post?

---

<div class="post-metadata">

### Author: ![Darren\_Murphy](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_murphy/32/47326_2.png) [@Darren\_Murphy](https://community.glideapps.com/u/Darren_Murphy)
#### Post date: [October 18, 2021, 2:21am UTC](https://community.glideapps.com/t/favorites-bar/33208/9 "2021-10-18T02:21:44Z")

</div>

> [@Wiz.Wazeer](#):
>
> If row has rowID why do you need a user specific column to make a like register since no one else can acces that row except the user?

hmm, are you confusing RowID’s with Row Owners maybe?

---

<div class="post-metadata">

### Author: ![Wiz.Wazeer](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/wiz.wazeer/32/72423_2.png) [@Wiz.Wazeer](https://community.glideapps.com/u/Wiz.Wazeer)
#### Post date: [October 18, 2021, 2:28am UTC](https://community.glideapps.com/t/favorites-bar/33208/10 "2021-10-18T02:28:08Z")

</div>

@Jeff_Hager is right. Don’t know why I was liking my own posts. I’m am liking someone else’s posts and therefore It requires a user specific column.

---

<div class="post-metadata">

### Author: ![Darren\_Murphy](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_murphy/32/47326_2.png) [@Darren\_Murphy](https://community.glideapps.com/u/Darren_Murphy)
#### Post date: [October 18, 2021, 2:37am UTC](https://community.glideapps.com/t/favorites-bar/33208/11 "2021-10-18T02:37:30Z")

</div>

[Jeff](https://community.glideapps.com/t/chuck-norris-aka-jeff/26818) is _always_ right. Well, I heard a rumour that he was wrong once, but I don’t buy it.

---

<div class="post-metadata">

### Author: ![Wiz.Wazeer](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/wiz.wazeer/32/72423_2.png) [@Wiz.Wazeer](https://community.glideapps.com/u/Wiz.Wazeer)
#### Post date: [October 18, 2021, 2:39am UTC](https://community.glideapps.com/t/favorites-bar/33208/12 "2021-10-18T02:39:30Z")

</div>

😂😂😂 couldn’t agree more.

---

<div class="post-metadata">

### Author: ![Wiz.Wazeer](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/wiz.wazeer/32/72423_2.png) [@Wiz.Wazeer](https://community.glideapps.com/u/Wiz.Wazeer)
#### Post date: [October 18, 2021, 2:52am UTC](https://community.glideapps.com/t/favorites-bar/33208/13 "2021-10-18T02:52:11Z")

</div>

To answer your query, yes I did.

---

<div class="post-metadata">

### Author: ![meganb](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/meganb/32/16632_2.png) [@meganb](https://community.glideapps.com/u/meganb)
#### Post date: [October 18, 2021, 2:54am UTC](https://community.glideapps.com/t/favorites-bar/33208/14 "2021-10-18T02:54:16Z")

</div>

![Screen Shot 2021-10-17 at 10.41.58 PM](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/5/e/5edf97399cc695fa96064a5eb996cbc419a004b6.png)  
 ![Screen Shot 2021-10-17 at 10.42.53 PM](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/2/f/2f30160f50d81e4fcf123d2a3cd182a142f29413.png)  
 ![Screen Shot 2021-10-17 at 10.49.24 PM](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/4/d/4da618de689cdd5f28ba8b72348c3db21298a45d.png)

I’m putting in some screenshots to clarify my use case. You see I have a list of the four separate timeslots for our sessions, then they click on that and see their options, then they click on the different options to learn more details about that specific session, and that’s where I put the heart. But where does that data about the use clicking the heart live in my spreadsheets? I don’t see or understand how me adding the heart component adds data to my spreadsheet or how I’m supposed to connect the heart component to my spreadsheets.

---

<div class="post-metadata">

### Author: ![Darren\_Murphy](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_murphy/32/47326_2.png) [@Darren\_Murphy](https://community.glideapps.com/u/Darren_Murphy)
#### Post date: [October 18, 2021, 3:00am UTC](https://community.glideapps.com/t/favorites-bar/33208/15 "2021-10-18T03:00:55Z")

</div>

> [@meganb](#):
>
> But where does that data about the use clicking the heart live in my spreadsheets? I don’t see or understand how me adding the heart component adds data to my spreadsheet or how I’m supposed to connect the heart component to my spreadsheets.

In the underlying table for Breakouts, you should see an “Is Favorited” column. This is where the data will be stored. Note that you will not see this column in your Google Spreadsheet - it only exists in Glide.

Also note that because favorites is user specific, your users must be signed in (or they will be prompted to sign in) and you must have [User Profiles](https://docs.glideapps.com/all/reference/security-and-per-user-data/user-profiles) configured in order to use it.

---

<div class="post-metadata">

### Author: ![Jeff\_Hager](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/jeff_hager/32/43_2.png) [@Jeff\_Hager](https://community.glideapps.com/u/Jeff_Hager)
#### Post date: [October 18, 2021, 3:04am UTC](https://community.glideapps.com/t/favorites-bar/33208/16 "2021-10-18T03:04:57Z")

</div>

All it does is mark a column in the row to indicate it’s a favorite. It doesn’t “put” it anywhere. It would be like adding a note column and writing in that column “I Like This” so you know that, when you see the note for that row, you like that row.

I think the problem you are having is that you want the user to see those favorites. You had mentioned making them visible in the user profile. You can do that by adding inline lists in your user profile screen and filtering the list where the favorite column is true. On the other hand, if you are trying to see the All/Favorites choice at the top of the screen on the individual tabs, then those tabs need to use one of the list style views instead of the details view. You can get that choice on a details style view, but you need to create it yourself. Before we get into how that is done (not as easy), it would help to understand how and where you want to view those favorites.

---

<div class="post-metadata">

### Author: ![meganb](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/meganb/32/16632_2.png) [@meganb](https://community.glideapps.com/u/meganb)
#### Post date: [October 18, 2021, 3:13am UTC](https://community.glideapps.com/t/favorites-bar/33208/17 "2021-10-18T03:13:10Z")

</div>

I don’t see it anywhere on my breakout sheet though. It doesn’t seem like the heart component is linked back to my sheet anywhere. First shot is me viewing the screen as myself, and then viewing the datasheets. What column is supposed to be checked off?

 ![Screen Shot 2021-10-17 at 11.10.10 PM](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/d/0/d033689cfc239e9f35840d35d87f32e1fc9f1768.png)  
 ![Screen Shot 2021-10-17 at 11.10.42 PM](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/c/c/cc280e089f9e5b7385ba488c3903b4d4b47b9410.png)

---

<div class="post-metadata">

### Author: ![Jeff\_Hager](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/jeff_hager/32/43_2.png) [@Jeff\_Hager](https://community.glideapps.com/u/Jeff_Hager)
#### Post date: [October 18, 2021, 3:16am UTC](https://community.glideapps.com/t/favorites-bar/33208/18 "2021-10-18T03:16:19Z")

</div>

Don’t see what exactly? Do you mean the column? There should be a column named isFavorite.

---

<div class="post-metadata">

### Author: ![meganb](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/meganb/32/16632_2.png) [@meganb](https://community.glideapps.com/u/meganb)
#### Post date: [October 18, 2021, 3:18am UTC](https://community.glideapps.com/t/favorites-bar/33208/19 "2021-10-18T03:18:21Z")

</div>

Do I need to create that column though? You’re right. This is where I’m stumbling. In the official Glide help section, it was talking about a column being automatically added when you activate the heart component on a list, but I don’t see where this column was supposedly automatically added for me.

---

<div class="post-metadata">

### Author: ![Jeff\_Hager](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/jeff_hager/32/43_2.png) [@Jeff\_Hager](https://community.glideapps.com/u/Jeff_Hager)
#### Post date: [October 18, 2021, 3:23am UTC](https://community.glideapps.com/t/favorites-bar/33208/20 "2021-10-18T03:23:01Z")

</div>

It’s supposed to be automatically created. I have seen issues if people delete the column inadvertently.

Do me a favor and add a text column to your breakouts detail screen. You can select a column from from the table. Does it show the isFavorite column in the drop-down as an option for the source of the text component? You may also want to try with the switch or checkbox components as well

[Next page](https://community.glideapps.com/t/favorites-bar/33208.md?page=2)
