Questions tagged [unselect]
56 questions
0
votes
2 answers
Unselect checkbox at click using Jquery
I set up a basic shopping cart where you have to put goods into a green box to order them. When you click on the item icon, it correctly checks the associated checkbox. Unfortunately, when you click again on it, it doesn't uncheck.
I've tried…

cheezburger
- 77
- 2
- 9
0
votes
0 answers
Deselect only text with one certain class on mousemove
Let's say I have some text with the class .a and some more text with the class .b.
How to unselect only text with the class .a on mousemove, instead of all text like in this fiddle:
http://jsfiddle.net/Lx5bbrk2/
$('*').mousemove(function(){
…

astx123
- 85
- 8
0
votes
3 answers
MYSQL unselect query from second table
Hi I have this two table
table 1
id Selection
-------------------
1 John
2 Ely
3 Marcus
4 Steve
5 Fritz
6 Orly
7 Carlo
8 Lee …

Markie Mark
- 129
- 6
- 12
0
votes
2 answers
QGraphicsItem unselect redraw problem
Very simple Qt GUI application:
On the scene I have multiple circles implemented as QGraphicsItem
boundingRect returns square around
this circle.
Method 'shape' is not overridden.
The problem appears when in paint() method I've added:
if…

Dewfy
- 23,277
- 13
- 73
- 121
0
votes
2 answers
unselects the items on top when scrolling to bottom
I have a WPF listbox. The items are bound to the listbox.
When I select a few items at the top of the listbox and scroll down to the bottom of the listbox to select other items, the items that were earlier selected at the top are getting…

user1174134
- 3
- 3
0
votes
2 answers
jQuery Isotope Filtering Reset
I'm using JQuery Isotope with a combination, three-level filter. In all the examples I've come across, the only way to "reset" the filters is by clicking a "Show All" option.
Is it possible to "un-filter" results by clicking on a selected filter to…

RevConcept
- 253
- 1
- 6
- 19
0
votes
1 answer
Why a ListView automatically unselect selected items?
This happened every time an item was selected. I have a ListView with an OnItemClickListener and when the event is triggered it changes the property text on the TextView to some random string, after that the selected items turned into…

Nexs
- 1
-1
votes
2 answers
How to uncheck ion-radio in Angular for Ionic 5
I can't find a way to uncheck ion-radio, I tried using the "checked" property like in many examples online, but it seems that it works only for Ionic 4, in Ionic 5 this property is not there anymore
…

cornholio
- 1
- 1
-1
votes
1 answer
How to make a field deselected and none viewing in Regular Experession (regex)?
I want to write a regular expression for extract selected fields in a the one line:
for example with this line
(2017-11-01 time=14:07:41)
i want write a regex to extract below result:
2017-11-01 14:07:41
in other words i want to showing a one…
-1
votes
1 answer
Java only allow two drawn circles to be selected at a time, how to unselect
Hey so I've got 20 circles displayed on a screen, I want the user to be able to select only two circles and be able to unselect circles but still only have maximum 2 circles selected. I know how to allow it to only select two circles at a time but…

user1331723
- 35
- 1
- 7
-2
votes
1 answer
Angular - Unselect all Checkbox
I was able to successfully Add Select All functionality when checkbox is clicked. However I am unable to Uncheck All when all items are already selected
Here is the link to code -…

Andrew
- 1
- 2