Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
277 views

contentEditable + selectAll: Firefox won't allow keyboard input on dynamically generated content

I'm having a problem in Firefox (other browsers seem to work fine) with dynamically generated elements containing a contenteditable="true" attribute: If I selectAll (either dynamically, or with my ...
5
votes
3answers
6k views

Programatically Select all text in UITextField

How can I programatically select all text in UITextField? Thanks!
5
votes
4answers
24k views

How to implement “select all” check box in HTML?

I have an HTML page with multiple checkboxes. I need one more checkbox by the name "select all". When I select this checkbox all checkboxes in the HTML page must be selected. How can I do this?
4
votes
1answer
3k views

WPF Listbox and Select All

I want to create a simple ListBox and have SelectAll as a context menu item. However it seems that ListBox has some sort of inbuilt handling for SelectAll that I can't get working, but is interfering ...
4
votes
3answers
2k views

How to SelectAll / SelectNone in .NET 2.0 ListView?

What is a good way to select all or select no items in a listview without using: foreach (ListViewItem item in listView1.Items) { item.Selected = true; } or foreach (ListViewItem item in ...
3
votes
3answers
82 views

select all on focus in lots of jTextField

I have lots of jTextFields in my application (About 34 jTextFields) and I want all of them select all of their text when get focus and select none of text on focus lost. Is there any way to do this ...
2
votes
3answers
164 views

Select All Checkbox

I have a webpage that returns search results in a table/form. I would like to have a select all checkbox, that would select all the checkboxes for the search results. My code for the display results ...
2
votes
3answers
3k views

Select All Items in asp.net CheckBoxList

ASP.NET and C#. I'd like to have a CheckboxList with a "Select All" item. When this particular item is selected, all others will be selected too. When selection is removed from this item, so too ...
1
vote
4answers
95 views

UISearchBar select all text

Is there any way to select all text in UISearchBar? I tried [searchBar selectALL:], but it throw the signal (unrecognized selector). I want to allow user to alter previous search text. At the some ...
1
vote
2answers
123 views

Select/Deselect All Checkboxes along with colour changing of a selected row using jquery

I have a table where each row has some data and the user can submit all rows or single row or some rows. So, every row has a checkbox now and If the user checks the checkbox the background colour of ...
1
vote
3answers
43 views

*[id^= Selects all, I'd like to select each same number

With this code, when you hover over anything with the id="trigger*", it shows everything with the id="panel*" I would like it, for trigger1 to show panel1, for trigger2 to show panel2. Is that ...
1
vote
1answer
74 views

Use selectAll() in a GWT TextArea

My GWT page has a TextArea and I would like it to have the focus and to have all the text selected just when this page is loaded. I try the code below but it does not work at all. Can you help me? ...
1
vote
1answer
233 views

VB6 - Select all items from external program Listview

I have to select all items from an external program Listview control. Does anybody know how can I accomplish this? I tried with SendCommand, but failed. In AutoIt I can do it this way: ...
1
vote
2answers
286 views

Select all Silverlight DataGrid cell text on cell entry

I have a DataGrid in SL4 with a simple DataGridTextColumn columns. I've tried a number of different methods to select all the text in a DataGridCell as soon as the cell changes to an editable ...
1
vote
2answers
680 views

Select all text in a Winforms Infragistics ComboBox

Is there a way to do this? I want to mimic the behavior of a the UltraTextBox.SelectAll method in windows forms.
0
votes
2answers
37 views

How to set focus to a TextBox after its Text has been set through binding?

I am trying to implement SelectAll (text) functionality for all TextBoxes in my WPF application. I found how to do that here. However, the first TextBox on my form is not automatically focused. I try ...
0
votes
1answer
132 views

deselect rows of a grid in Extjs 3

I have a grid and a button that makes me select all the rows of this grid (mygrid.getSelectionModel().selectAll()) But i want that when all the rows are selected and i click to this button it deselct ...
0
votes
1answer
109 views

Enable/Disabe selectAll check box in Infragistic UltraWinGrid

I have used Infragistic UltraWinGrid to display data on the Grid. In this grid, there is one check box column. I have added check box in header in this column to selectAll option. Now I want to ...
0
votes
3answers
447 views

iOS: UITextField selectAll + Editing Did Begin not working

I'm trying to make the text in a UITextField select when the user taps the field to begin editing. The idea is that normally, they will want to erase the entire field first, so this saves the step of ...
0
votes
2answers
293 views

obout checkboxlist select all item (with horrible generated html)

I'm trying to write a Javascript "Select All" method for the checkboxes in this combobox. I'm using the obout third party control combobox. The HTML generated by this contorl is below. This is the ...
0
votes
2answers
350 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
225 views

Select All On Focus of GWT SuggestBox

I've been searching and searching and can't find a usable example of selecting all text within a GWT SuggestBox widget on focus. I understand you have to attach a focusListener to the widget, but then ...
0
votes
3answers
922 views

CheckBoxList Items using JavaScript

I have a checkoxlist with a couple of items and an all option. The user can select all and I want this to check off all the options and if they uncheck all it will uncheck all options. I have ...
0
votes
2answers
114 views

Selecting XML node together will all children

I want to select a node together with all child nodes from an XML document that I have loaded. What method whould I use to get, for example below, <item2> and all child nodes (child ...
0
votes
1answer
444 views

Select all rows and deselect all rows option in listview

I have a list view with a check box in each row to select that row... And i have a select all check box above the listview to select all the rows at a click and vice versa... is it possible to do ...
0
votes
2answers
578 views

How to select all rows on a button click in jqGrid?

I can I select all rows on button click ...lets say I have a button call Select All ..When I click on that button it needs to select all rows ....I did n't find any relevant documentation on JqGrid ...
0
votes
1answer
254 views

Selectable text in wpf

Hi I am trying to render a WPF window that has lots of labels, textboxes, textblocks which are binding to data. I want to be able to select by mouse all the data or part of the data on the window. Is ...
0
votes
1answer
100 views

PyQt4 QSpinBox.selectAll() not working as expected

Python 2.5.4 PyQt4 I sub-classed a QDoubleSpinBox to emit a signal on a focusIn event: #Custom widgets for DPL GUI from PyQt4.QtCore import * from PyQt4.QtGui import * class ...
0
votes
3answers
2k views

WPF TextBox.SelectAll () doesn't work

I have used the following template in my project: <DataTemplate x:Key="textBoxDataTemplate"> <TextBox Name="textBox" ToolTip="{Binding ...
0
votes
2answers
2k views

DataGridView override top,left header cell click (select all)

I want to override the behavior of a mouse click in the DataGridView header/column cell (top, left cell). That cell causes all rows to be selected. Instead, I want to stop it from selecting all ...
-1
votes
1answer
31 views

jQuery selectall_all

Select all and Select All Category Select a category to select all and I want to run the form with jquery. But the selection process does not work in two different I have written I do not know ...
-2
votes
1answer
61 views

Won't work Check All button [closed]

Possible Duplicate: Select All Checkbox I have the follow code for a Check All button that will check all my checkboxes on my webpage, but it's not working. Where is the function supposed ...