Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
189 views

JTree: Selecting all nodes programatically

I have a Jtree, and 2 buttons to select and unselect all nodes. I made an attempt like this: selectAll = new JButton("Select all"); selectAll.addActionListener(new ActionListener (){ ...
2
votes
3answers
282 views

Default Text in the Drop Down

I am working on a wpf application, when using Combo Box control i am assigning ItemsSource to it. So, it displays a list of items with no item selected, now user can select an item of his choice. When ...
1
vote
1answer
225 views

Strange DataList select/unselect behavior

I'm having a hard time understanding how DataList select/unselect is supposed to work. I was under the impression that when you set the SelectedIndex the DL will change switch the item display to the ...
1
vote
3answers
262 views

Unselect what was selected in an input with .select()

After I use .select() to select the text in the input box when hovered over I did the following: HTML: <input type="text" class="hoverAble" value="hover here"/><br /> jQuery: ...
1
vote
2answers
1k views

Flex 4 - Select & Deselect same item in <s:List> with a mousedown

In Flex 4, I have a Spark List component with item renderers. I would like to select an item in the List by clicking on it, and deselect it also, by clicking on the same selected item. Like an on/off ...
1
vote
3answers
2k views

jQuery UI Selectable - unselect selected item on click

Does anyone know if there's a way to configure a jquery ui selectable element to unselect the selected element when you click it? Sort of like a toggle. If it's already selected, unselect it, ...
0
votes
1answer
29 views

R: Unselect matrix or data.frame columns by name [closed]

Possible Duplicate: Drop Columns R Data frame Assuming a matrix with 3 named columns "A", "B", C", I can unselect columns "B" and "C" like this: df[, -c(2, 3)] But what if I want to use ...
0
votes
2answers
121 views

'Unselect' a tab in a TabHost (Android Dev)

I have a TabHost holding 5 tabs. As far as I can see, there has to be one tab selected at all times. I need a way to unselect all my tabs so none will be selected. If the tabhost is meant by general ...
0
votes
2answers
352 views

checkbox toggle select all/unselect all problem

hi i found a script which uses checkbox to select all/ unselect all checkboxex which i found a working example here http://jsfiddle.net/ThiefMaster/HuM4Q/ the problem is when i tried to integrate it ...
0
votes
1answer
455 views

unselecting and reselecting a TreeViewItem in a TreeView

I've got the following problem: In my TreeView i added unselect functionality by calling my own deselect()-method when the user clicks the TreeView but not a TreeViewItem. Here is my TreeView method: ...
0
votes
2answers
967 views

jQuery UI tabs, select/unselect (collapse) events

I am using jQuery UI 1.8.5 tabs plugin, with collapsible : true configuration. I need to call a function after a tab is collapsed to add a css class. Does anyone know how? Thanks in advanced James
0
votes
1answer
2k views

Android Tab Layout tutorial?

I want to be able to assign different images to my tabs in the TabLayout control depending on whether the item is selected or not. I followed the tutorial on the Android site but they made the example ...
0
votes
1answer
59 views

Need help to highlight a specific cell of a table and unhighlight onother cell if highlighted

So, I will explain a bit further. I have a table with different cells. What I need to do is that when the user clicks on the cell, that cell would change its class and highlight. That is working ...
0
votes
2answers
458 views

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 ...