2,116 questions
0
votes
1
answer
92
views
Padding is not applied, as well as hidden class in tailwind css [closed]
I really need help with padding not applied for modal top up as well as hidden. The problem is in the end of the code. This pop up div is not in the centre. It is also very small, the padding is not ...
0
votes
0
answers
25
views
Which is efficient for displaying a component in angular conditionally based on a checkbox value? *ngIf directive or [hidden] property? [duplicate]
I have a checkbox and I need to show a datebox only if the checkbox is checked. What is the best and most efficient way to achieve this.
<div class="box" [hidden]="!checked">
...
1
vote
2
answers
157
views
How to show hidden text
I've been trying to show my hidden description when the user hovers over the image, but for some reason I can't make it work.
.imageContainer {
display: inline-block;
transition: all 1s ease;
}
....
1
vote
1
answer
34
views
in one column, several groups of hidden rows, insert new row and they all move down, how to stop?
I have several categories which I want the BTN_X to hide or unhide rows associated with each category. The code below works, but if i want to add an additional row (say add 217) in the first category, ...
0
votes
0
answers
36
views
How to make past date hidden in fullcalendar and event draggable function still works? in vue3
I want to make the days before today in this month hidden, but still be able to drag the event.
I already tried use the CSS attribute display:none by classNames but it makes the event undraggable, ...
0
votes
1
answer
58
views
toggle many hidden objects at once
I have a blue square and when I hover over it, two other objects should appear.
So far, only one object (the text) appears and the other one (the red square) remains hidden.
How do I make that on ...
0
votes
1
answer
95
views
Textbox Search Range of Hidden Sheets
This is supposed to loop through the workbook hidden or unhidden sheets, and search for textbox.text in Range I, and K, setting the sheets back to the visibility state they were in originally. Well, ...
0
votes
1
answer
53
views
Problem sending data with select and hidden input
I'm having a problem with my code where there's a select that's 'disabled' and it doesn't send the data to the next page. I've tried using hidden input but it didn't work.
This is the part where the ...
0
votes
2
answers
49
views
python selenium select dropdown with a hidden class
I'm a beginner at using python3 and selenium, and I'm trying to click specific value in dropdown options.
I tried using select and actionchains, execute_script with js, xpath, css... etc. but it can't ...
0
votes
0
answers
24
views
Difference in desktop site & mobile site's view of sliding gallery
I've been trying to get this thing to work for a while now, but it's been giving me headaches.
(Not an experienced coder here), But i was able to add a sliding gallery to my site : https://www....
0
votes
1
answer
79
views
Javascript in Codepen works on desktop not on mobile
Using Codepen.
When the form submit button is pressed, JavaScript instructs my 'result' div to become visible (by removing the 'hidden' attribute):
const form = document.getElementById("form")
...
0
votes
1
answer
90
views
How to hide records in odoo for certain groups of users
En: The developed function is filtering the groups well, but it's not returning only the cases within the past 24 hours. I want it to hide all cases that have passed beyond the 24-hour mark. Could ...
0
votes
0
answers
69
views
How to keep a CSS 'tool-tip' div from going off screen to the right
I am writing an ASP 'document server' to list (details and icons, like in Windows Explorer) and display current and historical documents in a database.
I found a great looking CSS 'tool tip', but ...
0
votes
1
answer
1k
views
How to hide an item in a LazyColumn in Android Compose
How to hide an item in a LazyColumn in Android Compose?
I had a LazyColumn with more than a hundred items from which to select one.
Looking for a solution found the following Link1 and Link2.
But I ...
0
votes
0
answers
29
views
Hidden state in Flutter Applifecycle
I am utilizing Firebase FCM to send push notifications in my Flutter app. How can a user receive offline notifications in Flutter? This implies that the user should be able to receive notifications ...
0
votes
1
answer
66
views
Is there a way to display: none; all but one element using if statement?
Trying to hide all but one product card so that the one displayed product card can be turned into a carousel to display the hidden product cards when carousel buttons are clicked.
Product cards will ...
0
votes
0
answers
35
views
How to remove symbols directly from a dynamic library binary(.so)? [duplicate]
I have a dynamic 3rd party library that has bunch of symbols from libc++ exposed. When I put everything together I have an ODR violation, half of my std::basic_string is from one lib, one is from ...
0
votes
1
answer
192
views
Populate a cell based on information from a table but skip hidden rows
Looking to have cells pull information from a table in sequence but ignore hidden rows from the source table.
I am currently pulling information from one table to another using the below code.
=IF(...
1
vote
0
answers
50
views
get hidden derived property from base class [duplicate]
The classA has property pA which has type of baseType.
I have created classB derived from classA and it is hiding pA property with "new" modifier: newType pA;
newType derived from baseType......
-2
votes
1
answer
46
views
how to find the hidden type value in webpage?====> <input type="hidden" id="rating" name="rating" value="">
I am a student who wanna know my test result before it's official grade announcement date.
i am wondering if there is any ways to find out my test result which is a hidden type value in the ...
-1
votes
2
answers
118
views
css with alternate row colours, hover and reveal
I have a table of six columns. The table is formatted with odd and even row colours with current row highlighted with different colour. I am using this table to list pdf documents which can be ...
0
votes
0
answers
40
views
Keyboard not showing when TextFormField is pressed Flutter
The keyboard is not displayed when clicking on TextFormField on virtual machines and real machines like Oppo, Redmi.
enter image description here
enter image description here
-1
votes
1
answer
83
views
How to hide radio buttons in c#
I want to hide some radio buttons based on a value.
How to do that?
I was trying this.
if(ArbeitsplatzId==400)
{
//RbAmWartungRbRüstenRbRPMWartungRbSchichtwechsel
RbAmWartung.Visibility = ...
0
votes
1
answer
78
views
overflow:hidden clips my svg mask in the wrong place :(
I am trying to create a profile picture where you can change the colour of the hoodie.
Image 1 - overflow:none
Image 2 -overflow:hidden
However, when I want to hide overflow so it fits the circle it ...
-1
votes
1
answer
115
views
How to make a flex-grow element take up the space of a hidden flex item?
I want the entire window divided into two or three areas - depending on the state of a checkbox. If the box is not checked I want the second area to be hidden while I want the first area to grow into ...