Questions tagged [unselect]

56 questions
2
votes
6 answers

How to select or unselect all checkboxes in JQuery Mobile?

I have several collapsible check-boxes, and am trying to check/uncheck all the boxes within that section. HTML Currently when I click on the main checkbox, it simply opens and closes the collapsible dialog.
  • user1501922
  • 1
    vote
    1 answer

    R: Unselect matrix or data.frame columns by name

    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 column names? How can I df[, -c("B", "C")]?
    Robert Kubrick
    • 8,413
    • 13
    • 59
    • 91
    1
    vote
    3 answers

    'Unselect' a tab in a TabHost

    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 to have one tab selected at all times, how can I…
    Binary
    • 147
    • 2
    • 14
    1
    vote
    1 answer

    Treeview and Tkinter delete unselected items in treeview

    Hi I need to delete all items in Treeview BUT leave searched items in the window. Any help please. At the moment the searched item is…
    wayne
    • 11
    • 2
    1
    vote
    3 answers

    How to unselect input content when focus on it by pushing tab key?

    In an html form, When you use tab to go on next input it select all the content by default, How to unselect it?
    Nicolas
    • 2,684
    • 1
    • 16
    • 22
    1
    vote
    2 answers

    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 to my own html. it doenst work anymore, here is my…
    kester martinez
    • 421
    • 6
    • 14
    • 23
    1
    vote
    1 answer

    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 appropriate template. The behavior I am seeing…
    saarp
    • 1,931
    • 1
    • 15
    • 28
    1
    vote
    1 answer

    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: public void deselectAll() { TreeViewItem item…
    Yellow
    • 13
    • 1
    • 3
    1
    vote
    0 answers

    Select,Unselect,Intermediate Checkbox treeview in *ngFor

    As I mentioned above code i want category is my parent and when I'm select category checkbox it will select all it's child checkbox(items) .And when I select particular one child then category checkbox is intermediate. Same for the child and…
    Rushi Patel
    • 561
    • 4
    • 14
    1
    vote
    2 answers

    Flex 4 - Select & Deselect same item in 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 switch. My item renderer has the following…
    Yozef
    • 829
    • 11
    • 27
    1
    vote
    2 answers

    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?
    James Lin
    • 25,028
    • 36
    • 133
    • 233
    1
    vote
    0 answers

    How to Unselect with Image Picker in jQuery

    I'm unable to unselect an option in Rails using Image Picker gem. The select function works fine. Using jQuery to call .imagepicker on "select". I need to be able to unselect an option. Any suggestions would be helpful. Here's the…
    JohnOHFS
    • 174
    • 14
    1
    vote
    2 answers

    Unselectable does not work on webkit

    $('input').on('focus', function() { $(this).val('example'); $(this).attr('unselectable', 'on').css('user-select', 'none').on('startselect', false); }); When I try to select field value on Chrome or Opera, I'm able to do that. On Firefox and…
    1
    vote
    1 answer

    How to make some item unselectable in Dialog?

    I have this Dialog with 4 items in it. And I need to make for example first item unselectable (unclickable), how can I do that? String[] presets = { getString(R.string.string1), getString(R.string.string2), getString(R.string.string3),…
    Adam
    • 2,152
    • 4
    • 35
    • 45
    0
    votes
    0 answers

    Delphi Grid - How to deselect already selected rows by search value

    I need deselect some rows in TGrid by searched value in the columns, but cannot find any example for that. I'm using Delphi 10.3. The code below does not unselect the rows but quite the opposite. Can be "...SelectedRows.CurrentRowSelected := False"…