Questions tagged [selectall]
219 questions
0
votes
1 answer
C# WPF RichtextBox type behavior change
I have recently converted a TextBox (which I am using as a search box) to a RichTextBox in order to bold some contained words within the box. Upon doing so I have noticed a few "errors". I would like to know if they are intentional, and how to…

Justin Grahn
- 335
- 3
- 4
- 14
0
votes
0 answers
extjs : select/deselect all functionality in the grid
I do a search on my page and get a list of results. When I click in the grid and click ctrl + A, all the records in the grid should get selected. For this I am using the following code.
{ key: Ext.EventObject.A,
ctrl: true,
…

user3546785
- 157
- 1
- 7
- 16
0
votes
2 answers
How to remove selection on images
I want to remove the selection-highlight on all images on my page.
I found some useful additions like :
CSS
img {
-webkit-user-select:none;
-khtml-user-select:none;
-moz-user-select:none;
-o-user-select:none;
…

Kris
- 567
- 3
- 11
- 25
0
votes
2 answers
Wierd issues when performing selector "selectAll" on UITextField
I am facing the the wierdest bug (ether in my app or in IOS 7.1) ever.
After many hours I managed to create a simple app that demonstrate the problem.
Two UITextField - Dragged and dropped from interface builder and wired to t1, t2.
the…

Yony
- 680
- 1
- 9
- 20
0
votes
1 answer
Selectable text in wpf
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 there a simple way in WPF to do that?
Should I use…

Ghassan Karwchan
- 3,355
- 7
- 37
- 65
0
votes
0 answers
JSF2 h:SelectBooleanCheckbox select all with one
I had found a script to select all with only one. Now I tried it with a h:SelectBooleanCheckbox. But it failed. How can I select my list (in datatable columns) of SelectBooleanCheckbox with one and maybe javascript for client…

quantatheist
- 159
- 1
- 5
- 12
0
votes
1 answer
SSRS deselecting some values from multi-select paramter
I have a report with a multi-select parameter. The first time you run the report, everything works fine.
My issue is, if you choose the value Select All for AssetTypes and run the report - all good. If you change one of the other parameters values…

tember
- 1,418
- 13
- 32
0
votes
2 answers
Select all javascript logic for multiple rows
I have the following Javascript function that is called when a change is made to one of my five "select-all" buttons of the class 'checkAllAud'. I basically have 5 vertical rows with possibly hundreds of checkboxes under each that need to be…
user2864691
0
votes
1 answer
Typo3 6.1 Extbase - select all fe users
I have an extension where I need to get all frontend users.
I tried this:
/**
* @var \TYPO3\CMS\Extbase\Domain\Repository\FrontendUserRepository $feUserRepository
*/
$feUserRepository =…

cili
- 1,037
- 2
- 19
- 34
0
votes
2 answers
How to Select All checkboxes in Flex Item Renderer?
I am stuck at a point where I need to select all check boxes of the Item Renderer.
I have a Select All button on whose click my all check boxes needs to get selected. Is it possible to do in Flex item renderer.
Below is my code for item renderer:
…

Ankit Tanna
- 1,779
- 8
- 32
- 59
0
votes
1 answer
jquery selectall not function properly after deselect
I need a solution about my problem.
I load my page, click on my first checkbox and all checkbox are checked. Great!
After I repeat the operation, deselect first checkbox and all checkbox are deselected. Great!
But if I click again on the first…

Scream
- 100
- 3
- 11
0
votes
1 answer
Appending when using selectAll in d3
I'm using d3 and I want to append to an element that I'm appending.
svg.append('g').attr('foo', 'bar')
.selectAll('rect').data(data)
.enter().append('rect')
.attr('class', function(d) { return 'some-class' })
.attr('y', 0)
…

user1756980
- 3,807
- 4
- 16
- 13
0
votes
4 answers
0
votes
2 answers
Kendo Grid and checkboxes - select all for a given column, "select all previous" / "deselect all after" for a given row's cell
The background for this question centres on a grid demonstrating progress in tasks on work items. Each row represents a work item that follows a set pattern of steps, some of which are performed per work item, or are performed on all work items at…

David Smithson
- 464
- 2
- 13
- 33