33
Views
10
Comments
Solved
Mini popup dialog
Question
Application Type
Reactive

Hi all,

I have to create a mini popup filter selection in top right of data table, and when I apply filter the filter icon will display the red dot ,

do you have any idea to create it? 

2022-01-05 09-37-24
Faiz Khan
Solution

Hi @Bella Nguyen,

You can use a variable or an attribute just to now that if u have any values in the filters.
And Share an OML below. 

Regards,
Faiz


Filter.oml
UserImage.jpg
Bella Nguyen

Thank you for your suggestion, I also have problem with mini popup do you know how to create mini popup in top right of the table for now the popup only open in middle of the screen 

2025-12-04 09-01-03
Kiet Phan
Champion
Solution

@Bella Nguyen 

I think you need to implement your own popup by css. the standard popup of Outsystems won't fit your need.

And about the red dot you can easily achieve it by css attached in attachment


red-dot.txt
UserImage.jpg
Bella Nguyen

Thank you for your suggestion, I also have problem with mini popup do you know how to create mini popup in top right of the table for now the popup only open in middle screen 

2024-09-12 02-43-38
Deepsagar Dubey
Solution

Hi @Bella Nguyen 

To control size (width & height) of your popup use below CSS style

.popup-dialog {    

    min-width: 50vh;    

    height: 20vh;

}

and to manage position of your popup use below CSS style

.popup-backdrop {     

    justify-content:flex-end;

}


Just add the above CSS in the respective Screen style sheet section.

I hope this will help you.

Thanks
Deep

UserImage.jpg
Bella Nguyen

Thank you all for your help. I solve my issues with CSS for icon and container + css for mini popup

2021-09-06 15-09-53
Dorine Boudry
 
MVP

@Bella Nguyen ,

what part are you having trouble with, the popup or the icon ?

Reading your question, I think the icon : I would just create 2 icons, one without and one with a dot, and put them in the true and false branch of an If.  The condition of the If checks whether a filter is applied (maybe by looking at the filter values, or maybe you want to have a separate boolean for that ...)

Dorine 

UserImage.jpg
Bella Nguyen

I got issue with both the mini popup and icon. I have to create mini popup in top right of the table. But now the popup only open in middle screen

2022-01-05 09-37-24
Faiz Khan
Solution

Hi @Bella Nguyen,

You can use a variable or an attribute just to now that if u have any values in the filters.
And Share an OML below. 

Regards,
Faiz


Filter.oml
UserImage.jpg
Bella Nguyen

Thank you for your suggestion, I also have problem with mini popup do you know how to create mini popup in top right of the table for now the popup only open in middle of the screen 

2020-07-21 19-28-50
Rajat Agrawal
Champion

Hi @Bella Nguyen,

You can inspect that filter icon and check which CSS is overridding that's why it is showing dot after click or apply.



Regards,

Rajat

2025-12-04 09-01-03
Kiet Phan
Champion
Solution

@Bella Nguyen 

I think you need to implement your own popup by css. the standard popup of Outsystems won't fit your need.

And about the red dot you can easily achieve it by css attached in attachment


red-dot.txt
UserImage.jpg
Bella Nguyen

Thank you for your suggestion, I also have problem with mini popup do you know how to create mini popup in top right of the table for now the popup only open in middle screen 

2024-09-12 02-43-38
Deepsagar Dubey
Solution

Hi @Bella Nguyen 

To control size (width & height) of your popup use below CSS style

.popup-dialog {    

    min-width: 50vh;    

    height: 20vh;

}

and to manage position of your popup use below CSS style

.popup-backdrop {     

    justify-content:flex-end;

}


Just add the above CSS in the respective Screen style sheet section.

I hope this will help you.

Thanks
Deep

UserImage.jpg
Bella Nguyen

Thank you all for your help. I solve my issues with CSS for icon and container + css for mini popup

2021-02-15 16-02-25
Steven de Jong

Consider using Overflow Menu (from OutSystems UI)

Here is its documentation.

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.