cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Anonymous
Not applicable

Flexible Height Gallery - a Better Way

 So the flexible height gallery control is very limited in usefulness out of the box.  The only controls with "auto height", which this functionality relies on, is the label control and HTML Text control.


I've seen some examples where people have used the Label control (making the text invisible) as a way to dynamically size each row (by adding more text in it), however, this was a bit quirky for me.  And now way to use this to really specify the height of the individual gallery item at a pixel level.

 

So I got to thinking that if the HTML Text control also works with Auto Size (it does), perhaps one could use this by using HTML to create a variable sized (to the pixel) vertical line.  


And yes, it works...  🙂  

 

Let's say your gallery is called Gallery1.  So what you would do is as follows:

 

  1. In Gallery1 add a column to what you have in Items, that will represent the height you want for each individual row.  I'll call this MyHeight for now.  So if I have 3 rows and want the first to be 10 pixels high, the second 20, and the third 30, I would just add these to the table. 

    There are other ways to do this (ie: value of a control within the gallery itself - ie: a slider that would allow the user to dynamically change it, resizing each row on the flow) - however, this depends on your usage.   

  2. Add an "HTML text" control to your gallery - I'll call this HtmlText1.  Set the following on HtmlText1:

    Auto height: ON  (IMPORTANT - and note I've seen PowerApps turn this off automatically sometimes, not sure why, so check it)
    X: 0
    Y: 0
    Width: 1
    Padding: Left: 0, Bottom: 0, Right: 0, Left: 0
    Height: Gallery1.TemplateHeight   (note: this could be any size you want to be the MINIMUM height, but setting it to this will allow you to drag the template size to this minimum)

  3. Now the "magic" here is in the HtmlText setting, so set HtmlText1.HtmlText to:

    "<hr width=1' size='" & ThisItem.MyHeight & "'>"
    (notice the single and double quotes in the above).

    This will create HTML to draw a vertical line 1 pixel wide and "ThisItem.MyHeight" pixels high.  Since the HtmlText1 control has Auto height On, the size of HTML 1 will change based on the length of the line.

    Note: Even though we set padding to 0, it appears that PowerApps will still make the height of the HtmlText1 control to itself be 5 pixels more than the length of the line.  Probably is a way around this, but doesn't matter to me.  

    Also note that there are many ways to specify the height of the line.  If you wanted to do this in a Slider that is within the gallery (letting the user set the individual slider to the size of that row), you could (instead of ThisItem.MyHeight) use ThisItem.Slider1.Value * 10 or something.

  4. And lastly, if you have a Separator line, say Separator1, you'd want to set its Y value to Max( HtmlText1.Height, Gallery1.TemplateHeight )

 

While this still is not a perfect substitute for the Gallery control not REALLY allowing for a flexible size (which it arguably SHOULD do) it does go a long way.  

Hope this helps someone.  If there is a better way to do this, please let me know, I'm very open to a better way.

 

1 ACCEPTED SOLUTION

Accepted Solutions
Anonymous
Not applicable

I'll try to post one for you.

Actually, with some of the changes in PowerApps, (there are still some issues with flexible height galleries), I had to change my approach, but what I've settled on seems to consistently work, regardless of the platform it was running on.  

With the other approach (posted above), I later discovered the sizing would be different depending on whether it was run as an app in Chrome/Chromium or Edge, whether it was running the web development environment, or if running on iOS or Android.  

 

I'm now using a rectangle object (either as a separator (height=1, Y=max height) or bounding rectangle (X=0, Y=0, height = max location of other controls) instead of the HTML.  This seems to work much better now.  I think the HTML approach differed between environments perhaps due to different assumptions those browsers/etc made about HTML spacing.  

To use the "bounding rectangle" approach, I set the X and Y of the rectangle to 0, and then for Height do something like the following:

Max( 
    If( 'FFG - CTRL TEXT INPUT'.Visible,         'FFG - CTRL TEXT INPUT'.Y         + 'FFG - CTRL TEXT INPUT'.Height,       0 ),
    If( 'FFG - CTRL DATE'.Visible,               'FFG - CTRL DATE'.Y               + 'FFG - CTRL DATE'.Height,             0 ),
    If( 'FFG - CTRL DATE RANGE START'.Visible,   'FFG - CTRL DATE RANGE START'.Y   + 'FFG - CTRL DATE RANGE START'.Height, 0 ),
    If( 'FFG - CTRL DROPDOWN'.Visible,           'FFG - CTRL DROPDOWN'.Y           + 'FFG - CTRL DROPDOWN'.Height,         0 ),
    If( 'FFG - CTRL COMBOBOX'.Visible,           'FFG - CTRL COMBOBOX'.Y           + 'FFG - CTRL COMBOBOX'.Height,         0 ), 
    If( 'FFG - CTRL CHECKBOX'.Visible,           'FFG - CTRL CHECKBOX'.Y           + 'FFG - CTRL CHECKBOX'.Height,         0 ),
    If( 'FFG - ERROR MSG Txt'.Visible,           'FFG - ERROR MSG Txt'.Y           + 'FFG - ERROR MSG Txt'.Height,         0 ),
    If( 'FFG - HEADER Txt'.Visible,              'FFG - HEADER Txt'.Y              + 'FFG - HEADER Txt'.Height,            0 ),
    If( 'FFG - textValue RESULT'.Visible,        'FFG - textValue RESULT'.Y        + 'FFG - textValue RESULT'.Height,      0 ), // Should only be visible if Debug is enabled
    /* Default */ 'FFG - NAME Txt'.Y + 'FFG - NAME Txt'.Height
) + 5

So in the above, my gallery is actually used to collect a user supplied range of filter criteria.  This is done in a custom control (FlexibleFilterGallery), I created, and the above is a snippet from it.  When using the control, it is passed in a table of "filter criteria" that specifies the type of control for the filter, the available values (for comboboxes, list boxes, drop downs), defaults, ranges (ie: start/end dates, numerical ranges, etc) that the control will use to provide the user the correct type of control, as well as limit options / validate user input.  

The template includes all those controls (combos, LBs, checkboxes, text entry, date, date range, etc), but only the one specified by the specific record in the table is set to Visible.

BTW - you'll also notice the check for the 'FFG - ERROR MSG Txt'.Visible.  This is only Visible if there was an error, and actually will increase the size of that cell to display the error message (ie: if for date range, end date is before start date) and once the error is corrected, the error message will then have Visible set to false, and thus the height of the cell will be reduced again automatically.

Thus, the code above with the If()s determine which one is visible, and then get its current Height - which depending on the control could be variable height (especially for text with autoheight set, etc).  

So this grabs the Max position from each of the Visible controls (in some other uses there might be multiple that are visible), adds 5 to this, and sets it to the height of the rectangle.  The flexible gallery control then correctly sizes itself, meaning that each record may be displayed in the gallery with a different height.

A slightly more complex way I use this is in a gallery or items (customer records) where each record may have multiple underlying records that I wish to display in the same template.  While I could do this with nested galleries (a gallery contained in a gallery), instead I'm using an HTML text field (with an HTML table) that is set to autoheight for the sub record.  (while this is not my specific use, consider this like a customer record, where perhaps the customer own multiple vehicles, so the "subrecord" is about the vehicles).  Initially the HTML is hidden, unless the user clicks on the "Show Details" button, which will then cause it to be set to Visible, and thus PowerApps will recalculate the size of that record in the template dynamically - expanding it as necessary.  You can show details of only the records you want which will only resize that one in the gallery accordingly.  Some have only 0, 1, or many subrecords (ie: vehicles in my example) - so the size will differ based on the record itself (number of rows as well as size of that row).  

Here I'm using the separator line approach (no difference in function, just visual appearance) with the HTML text set to autoheight.  So the Y for the separator (which is the bottom most control in the template) is:

If( 'AT - Usage Details Html_1'.Visible, 
    'AT - Usage Details Html_1'.Y + 'AT - Usage Details Html_1'.Height,
     'AT - Usage Details Html_1'.Y
)  + 5 


Works VERY well.  Sorry if the explanation was confusing - was typing this up between morning meetings (have to run for one).  Will see if I can post some screenshots later.

But hopefully the above gives you some ideas.


View solution in original post

6 REPLIES 6
v-monli-msft
Community Support
Community Support

Hi @Anonymous,

 

Thank you for sharing your resolution here and hope that this would benefit anyone who has the similar situation.

 

Regards,

Mona 

Community Support Team _ Mona Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Thanks @v-monli-msft.  

BTW - I discovered today that this works differently when run in another "PowerApps Player" app - ie: "Windows Player" (the Windows store app), Android, and iOS vs the "Web Player" app that appears to be used when running from Studio or SharePoint.   

 

It appears that there are text and spacing issues when run across platforms.  I suspect that the way "pixels" are calculated within the HTML text control may vary between platforms.  I've seen similar things happen with text box placement, height etc between platforms, so believe this is related.

 

My workaround (as longer term this will need to work cross platform) will be to manually figure out a "scaling factor" for each player, and have the app apply that when its running (though there is no direct way to figure this out from PowerApps - I had to use an MS Flow that PowerApps calls and parse x-ms-user-agent to determine this from within my app).  If I get this part working in the near future, I'll update the post.  that said, I would suspect that this scaling might change in future versions of PowerApps as (hopefully) Microsoft brings the scaling across the different "players" closer together.  

 

 

PytByt
Post Prodigy
Post Prodigy

@Anonymous could you please add a demo sir? i need this...

thank you

Anonymous
Not applicable

I'll try to post one for you.

Actually, with some of the changes in PowerApps, (there are still some issues with flexible height galleries), I had to change my approach, but what I've settled on seems to consistently work, regardless of the platform it was running on.  

With the other approach (posted above), I later discovered the sizing would be different depending on whether it was run as an app in Chrome/Chromium or Edge, whether it was running the web development environment, or if running on iOS or Android.  

 

I'm now using a rectangle object (either as a separator (height=1, Y=max height) or bounding rectangle (X=0, Y=0, height = max location of other controls) instead of the HTML.  This seems to work much better now.  I think the HTML approach differed between environments perhaps due to different assumptions those browsers/etc made about HTML spacing.  

To use the "bounding rectangle" approach, I set the X and Y of the rectangle to 0, and then for Height do something like the following:

Max( 
    If( 'FFG - CTRL TEXT INPUT'.Visible,         'FFG - CTRL TEXT INPUT'.Y         + 'FFG - CTRL TEXT INPUT'.Height,       0 ),
    If( 'FFG - CTRL DATE'.Visible,               'FFG - CTRL DATE'.Y               + 'FFG - CTRL DATE'.Height,             0 ),
    If( 'FFG - CTRL DATE RANGE START'.Visible,   'FFG - CTRL DATE RANGE START'.Y   + 'FFG - CTRL DATE RANGE START'.Height, 0 ),
    If( 'FFG - CTRL DROPDOWN'.Visible,           'FFG - CTRL DROPDOWN'.Y           + 'FFG - CTRL DROPDOWN'.Height,         0 ),
    If( 'FFG - CTRL COMBOBOX'.Visible,           'FFG - CTRL COMBOBOX'.Y           + 'FFG - CTRL COMBOBOX'.Height,         0 ), 
    If( 'FFG - CTRL CHECKBOX'.Visible,           'FFG - CTRL CHECKBOX'.Y           + 'FFG - CTRL CHECKBOX'.Height,         0 ),
    If( 'FFG - ERROR MSG Txt'.Visible,           'FFG - ERROR MSG Txt'.Y           + 'FFG - ERROR MSG Txt'.Height,         0 ),
    If( 'FFG - HEADER Txt'.Visible,              'FFG - HEADER Txt'.Y              + 'FFG - HEADER Txt'.Height,            0 ),
    If( 'FFG - textValue RESULT'.Visible,        'FFG - textValue RESULT'.Y        + 'FFG - textValue RESULT'.Height,      0 ), // Should only be visible if Debug is enabled
    /* Default */ 'FFG - NAME Txt'.Y + 'FFG - NAME Txt'.Height
) + 5

So in the above, my gallery is actually used to collect a user supplied range of filter criteria.  This is done in a custom control (FlexibleFilterGallery), I created, and the above is a snippet from it.  When using the control, it is passed in a table of "filter criteria" that specifies the type of control for the filter, the available values (for comboboxes, list boxes, drop downs), defaults, ranges (ie: start/end dates, numerical ranges, etc) that the control will use to provide the user the correct type of control, as well as limit options / validate user input.  

The template includes all those controls (combos, LBs, checkboxes, text entry, date, date range, etc), but only the one specified by the specific record in the table is set to Visible.

BTW - you'll also notice the check for the 'FFG - ERROR MSG Txt'.Visible.  This is only Visible if there was an error, and actually will increase the size of that cell to display the error message (ie: if for date range, end date is before start date) and once the error is corrected, the error message will then have Visible set to false, and thus the height of the cell will be reduced again automatically.

Thus, the code above with the If()s determine which one is visible, and then get its current Height - which depending on the control could be variable height (especially for text with autoheight set, etc).  

So this grabs the Max position from each of the Visible controls (in some other uses there might be multiple that are visible), adds 5 to this, and sets it to the height of the rectangle.  The flexible gallery control then correctly sizes itself, meaning that each record may be displayed in the gallery with a different height.

A slightly more complex way I use this is in a gallery or items (customer records) where each record may have multiple underlying records that I wish to display in the same template.  While I could do this with nested galleries (a gallery contained in a gallery), instead I'm using an HTML text field (with an HTML table) that is set to autoheight for the sub record.  (while this is not my specific use, consider this like a customer record, where perhaps the customer own multiple vehicles, so the "subrecord" is about the vehicles).  Initially the HTML is hidden, unless the user clicks on the "Show Details" button, which will then cause it to be set to Visible, and thus PowerApps will recalculate the size of that record in the template dynamically - expanding it as necessary.  You can show details of only the records you want which will only resize that one in the gallery accordingly.  Some have only 0, 1, or many subrecords (ie: vehicles in my example) - so the size will differ based on the record itself (number of rows as well as size of that row).  

Here I'm using the separator line approach (no difference in function, just visual appearance) with the HTML text set to autoheight.  So the Y for the separator (which is the bottom most control in the template) is:

If( 'AT - Usage Details Html_1'.Visible, 
    'AT - Usage Details Html_1'.Y + 'AT - Usage Details Html_1'.Height,
     'AT - Usage Details Html_1'.Y
)  + 5 


Works VERY well.  Sorry if the explanation was confusing - was typing this up between morning meetings (have to run for one).  Will see if I can post some screenshots later.

But hopefully the above gives you some ideas.


jlucarelli
Regular Visitor

Thank you!  That worked like a charm for me.  And now that I know you can embed control properties in the HTML text control, I imagine I'll find other users for that as well.  🙂

anilrambhajan
Helper III
Helper III

Can someone help me. My gallery items are "cutting off" on different screen resolutions when I use the flexible height gallery with the visible property

Helpful resources

Announcements

It's #MPPC23 Week! Check Out the Community Sessions and Events Happening in Vegas

After all the planning and preparing, the annual Microsoft Power Platform Conference is finally here! We are excited to see so many of our community in Las Vegas this week. To help make sure you don't miss any of the workshops, sessions, and events we have planned, make sure to check out this handy Community One-Sheet, and download the pdf today! Make sure to stop by the Community Lounge to meet @hugobernier, @EricArcher, @heaher_italent, and @AshleyFelts from our team! See you in Vegas!    

Join Us for the First-Ever Biz Apps Community User Group Meeting: Live from MPPC23

  Join us for the first-ever the Biz Apps Community User Group meeting live from the Power Platform Conference! This one hour user group meeting is all about discovering the value and benefits of User Groups! Discover how you can find a group in your local area or about specific topics where you can learn new skills and meet like-minded people as a user group member.   Hear from User Group leaders about why they do what they do and what resources they receive to help them succeed as community ambassadors. If you have never attended a User Group meeting before, this will be a great introduction! We hope you are inspired to find a group that meets your unique interests!   October 5th at 2:15 pm Pacific time   If you're attending #MPPC23 in Las Vegas, join us in person! Find out more here: https://powerplatformconf.com/#!/session/Biz%20Apps%20Community%20User%20Group%20Meeting%20-%20Live%20from%20MPPC/6172   Not at MPPC23? Attend vvirtually by registering here: https://aka.ms/MPPCusergroupmeeting2023    If you can't attend this meeting live, don't worry! We will record this meeting and share it with the Community at powerusers.microsoft.com 

Back to Basics: Tuesday Tip #1: All About YOUR Community Account

We are excited to kick off our new #TuesdayTIps series, "Back to Basics." This weekly series is our way of helping the amazing members of our community--both new members and seasoned veterans--learn and grow in how to best engage in the community! Each Tuesday, we will feature new areas of content that will help you best understand the community--from ranking and badges to profile avatars, from Super Users to blogging in the community. Our hope is that this information will help each of our community members grow in their experience with Power Platform, with the community, and with each other!     This Week's Tips: Account Support: Changing Passwords, Changing Email Addresses or Usernames, "Need Admin Approval," Etc.Wondering how to get support for your community account? Check out the details on these common questions and more. Just follow the link below for articles that explain it all.Community Account Support - Power Platform Community (microsoft.com)   All About GDPR: How It Affects Closing Your Community Account (And Why You Should Think Twice Before You Do)GDPR, the General Data Protection Regulation (GDPR), took effect May 25th 2018. A European privacy law, GDPR imposes new rules on companies and other organizations offering goods and services to people in the European Union (EU), or that collect and analyze data tied to EU residents. GDPR applies no matter where you are located, and it affects what happens when you decide to close your account. Read the details here:All About GDPR - Power Platform Community (microsoft.com)   Getting to Know You: Setting Up Your Community Profile, Customizing Your Profile, and More.Your community profile helps other members of the community get to know you as you begin to engage and interact. Your profile is a mirror of your activity in the community. Find out how to set it up, change your avatar, adjust your time zone, and more. Click on the link below to find out how:Community Profile, Time Zone, Picture (Avatar) & D... - Power Platform Community (microsoft.com)   That's it for this week. Tune in for more Tuesday Tips next Tuesday and join the community as we get "Back to Basics."

Power Platform Community Newsletter: September 2023

Welcome to our September 2023 Newsletter, where we highlight the latest news, product releases, podcasts, upcoming events, and the great work of our Power Platform Community members. As usual, please make sure you follow our News & Announcements in the Community to stay up to date. Another great way to connect is to join our Power Platform Community on LinkedIn. You can join our LInkedIn community here.   MPPC's Got Power - Submissions end September 28th! Are you ready to showcase your skills at the Microsoft Power Platform Conference in Las Vegas? Don't miss out on the "MPPC's Got Power" talent show, a grand celebration of connection, inspiration, and shared journeys. Whether you're a technical innovator, a talented storyteller, or have a hidden creative side, we want to see what you've got! With three categories to choose from, you have the chance to shine on stage and make your mark in the Microsoft Power Platform community.  Click the GIF to sign up by Thursday 28th September to be part of an unforgettable MPPC23 experience. Now is your time to shine!     Check Out the Low Code Approach Podcast Give the Low Code Approach Podcast a listen! Hosted by Sean Fiene, Wendy Haddad, and Kenric Auguillard, this innovative show shines a light on how Microsoft MVPs, product team members, and Community users are building exciting solutions using Microsoft Power Platform. Plus, with guests like Kartik Kanakasabesan, April Dunnam, Ricardo Duncan Jr., Sonja Gu, Phil Topness, Shane Young and more, this weekly show is a must for all you Business Applications enthusiasts out there. Click the image below to check it out!           COMMUNITY HIGHLIGHTS Check out the most active Community users for August 2023. These hardworking members are posting regularly, answering questions, writing blogs, giving kudos, and providing top solutions in their communities across Power Platform. Huge thanks to these amazing community members for their great contributions last month! trice602poweractivateLaurensMWarrenBelzAmikBCBuizerSamLedcreativeopinion timlExpiscornovusManishSolankiMattJimisonfernandosilvaMisterMarkPstork1saudali_25hafizsultan242Lucas001ragavanrajanp_doc   UPCOMING EVENT: 365 EDUCON CHICAGO Whether you're new to Microsoft 365, Power Platform and SharePoint, or an experienced power user, admin or developer, 365 EduCon has content designed to fit your experience level and area of interest. Their workshops and sessions are taught by Microsoft Certified Trainers, MVPs, Regional Directors, and Engineers. Find out more and register here: Home - Microsoft 365 EduCon Chicago - A Microsoft 365 Conference.  

Announcing the MPPC's Got Power Talent Show at #MPPC23

Are you attending the Microsoft Power Platform Conference 2023 in Las Vegas? If so, we invite you to join us for the MPPC's Got Power Talent Show!      Our talent show is more than a show—it's a grand celebration of connection, inspiration, and shared journeys. Through stories, skills, and collective experiences, we come together to uplift, inspire, and revel in the magic of our community's diverse talents. This year, our talent event promises to be an unforgettable experience, echoing louder and brighter than anything you've seen before.    We're casting a wider net with three captivating categories:  Demo Technical Solutions: Show us your Power Platform innovations, be it apps, flows, chatbots, websites or dashboards... Storytelling: Share tales of your journey with Power Platform. Hidden Talents: Unveil your creative side—be it dancing, singing, rapping, poetry, or comedy. Let your talent shine!    Got That Special Spark? A Story That Demands to Be Heard? Your moment is now!  🚀 Sign up to Showcase Your Brilliance: https://aka.ms/MPPCGotPowerSignUp  🔥 Deadline for submissions: Thursday, Sept 28th    How It Works:  Submit this form to sign up: https://aka.ms/MPPCGotPowerSignUp  We'll contact you if you're selected. Get ready to be onstage!  The Spotlight is Yours: Each participant has 3-5 minutes to shine, with insightful commentary from our panel of judges. We’re not just giving you a stage; we’re handing you the platform to make your mark.     Be the Story We Tell: Your talents and narratives will not just entertain but inspire, serving as the bedrock for our community’s future stories and successes.    Celebration, Surprises, and Connections: As the curtain falls, the excitement continues! Await surprise awards and seize the chance to mingle with industry experts, Microsoft Power Platform leaders, and community luminaries. It's not just a show; it's an opportunity to forge connections and celebrate shared successes.    Event Details:  📆 Date and Time: Wed Oct 4th, 6:30-9:00PM   📍 Location: MPPC23 at the MGM Grand, Las Vegas, NV, USA  

September User Group Success Story: Reading Dynamics 365 & Power Platform User Group

The Reading Dynamics 365 and Power Platform User Group is a community-driven initiative that started in September 2022. It has quickly earned recognition for its enthusiastic leadership and resilience in the face of challenges. With a focus on promoting learning and networking among professionals in the Dynamics 365 and Power Platform ecosystem, the group has grown steadily and gained a reputation for its commitment to its members!   The group, which had its inaugural event in January 2023 at the Microsoft UK Headquarters in Reading, has since organized three successful gatherings, including a recent social lunch. They maintain a regular schedule of four events per year, each attended by an average of 20-25 enthusiastic participants who enjoy engaging talks and, of course, pizza.     The Reading User Group's presence is primarily spread through LinkedIn and Meetup, with the support of the wider community. This thriving community is managed by a dedicated team consisting of Fraser Dear, Tim Leung, and Andrew Bibby, who serves as the main point of contact for the UK Dynamics 365 and Power Platform User Groups.   Andrew Bibby, an active figure in the Dynamics 365 and Power Platform community, nominated this group due to his admiration for the Reading UK User Group's efforts. He emphasized their remarkable enthusiasm and success in running the group, noting that they navigated challenges such as finding venues with resilience and smiles on their faces. Despite being a relatively new group with 20-30 members, they have managed to achieve high attendance at their meetings.   The group's journey began when Fraser Dear moved to the Reading area and realized the absence of a user group catering to professionals in the Dynamics 365 and Power Platform space. He reached out to Andrew, who provided valuable guidance and support, allowing the Reading User Group to officially join the UK Dynamics 365 and Power Platform User Groups community.   One of the group's notable achievements was overcoming the challenge of finding a suitable venue. Initially, their "home" was the Microsoft UK HQ in Reading. However, due to office closures, they had to seek a new location with limited time. Fortunately, a connection with Stephanie Stacey from Microsoft led them to Reading College and its Institute of Technology. The college generously offered them event space and support, forging a mutually beneficial partnership where the group promotes the Institute and encourages its members to support the next generation of IT professionals.   With the dedication of its leadership team, the Reading Dynamics 365 and Power Platform User Group is poised to continue growing and thriving! Their story exemplifies the power of community-driven initiatives and the positive impact they can have on professional development and networking in the tech industry. As they move forward with their upcoming events and collaborations with Reading College, the group is likely to remain a valuable resource for professionals in the Reading area and beyond.

Top Solution Authors
Top Kudoed Authors
Users online (4,277)