Questions tagged [selectionchanged]
263 questions
0
votes
1 answer
How to update multiple select content without refreshing page?
I'm not sure how to tackle this one, so I need some help.
I have 3 select boxes, and each select box has its content from text file.
select1 list from customer.txt
select2 list from select1 selection + "_location.txt"
select3 list from select1…
0
votes
1 answer
Call the sub routine in vba automatically when a cell selection has changed?
Can this formula still be modified?
I've been trying to compare three drop-down lists that shows either "Yes" or "No". However, whenever I make changes in excel it will not automatically activate or call the sub routine even if I tried to call the…
0
votes
0 answers
WPF Combobox SelectionChanged Event is not firing
I have a comboBox, user controls and a button. SelectionChanged event is not firing in my UI App but when I copy the same combobox code in a different WPF app, selectionChanged event is firing. I don't understand why event is not triggered just…

Manju
- 21
- 2
- 9
0
votes
1 answer
WPF MVVM Combobox SelectionChanged just after reload the ViewModel
My problem is, after the SelectionChanged event nothing happen. The TextBox didnt get any new value relaited to the ComboBox. When I reload the ViewModel (Go page 1 and back), the TexBox has his new value relaited to the ComboBox.
Below you can see…

Fehr Benjamin
- 62
- 1
- 11
0
votes
1 answer
Worksheet_SelectionChange Returns an error if the condition is false
I try to bounce a Form
if the selection is in column 4 and only 1 cell is selected and the cell next in column 3 is empty
If the condition is true it works
But if the condition is false, an error comes out:
run time error '13': type mismatch,
On…

The shadow
- 3
- 2
0
votes
2 answers
I want to know if any word is selected within the "id"
document.getElementById('analyseArticleBody').addEventListener('selectionchange', () => {
console.log('hello')
this.doubleClick()
})
I want to know if any word is selected inside this section

abhi matta
- 9
- 4
0
votes
1 answer
how to call command button click event based on cell value?
i have a shipment tracking table with many records, each represent a shipment
and in a different sheet i have an "Arrival Notification" template , with a command button to update template values and send automatic email to client once their…

Mohamed Rizk
- 21
- 3
0
votes
1 answer
Load column on drop down change selection in mvc JavaScript
How to bring the employee name list in one column on selection of project name drop-down list? At the same time while besides employee name 1 textbox and one date filterbox also should generate dynamically. I'm am not good in scripting technologies…

Dev Sahu
- 19
- 4
0
votes
0 answers
WPF ListView DataTemplate SelectionChanged
I have a TabControl with a number of TabItems based on template.
Each TabItem has a ListView inside, and I would like to get SelectedItems.
I use Binding for all of my ListViews, except for SelectedItems, where I use the SelectionChanged event…

Siegfried.V
- 1,508
- 1
- 16
- 34
0
votes
0 answers
uwp ListView has no SelectionChanging event
so basically I have a ListView like Following :

Muhammad Touseef
- 4,357
- 4
- 31
- 75
0
votes
1 answer
How to change the editable ComboBox's text to something else when a specific ComboBoxItem is selected?
The new text will never be present in the items inside ComboBox. Below is the full XAML + code-behind that does not work as I wish. What I am trying to achieve is to have the user select an actual group of items from the combo box, or a No Group…

silviubogan
- 3,343
- 3
- 31
- 57
0
votes
1 answer
Validation on tab change (view change) in WPF
I have a grid control in a tabcontrol. I need to validate the grid when user attempts to leave the tab. If validation fails, I need to cancel the tab change (so to disallow user to change the tab until validation succeeds).
The problem with this…

Arpit Khandelwal
- 1,743
- 3
- 23
- 34
0
votes
0 answers
Angular Kendo UI Combobox Clear
I want to clear the selection of my kendo-combobox.
As…

Tris Tan
- 33
- 6
0
votes
2 answers
vba target.count=1 error when selecting all
I have a sheet including code that would trigger some VBA code depending of which cells are selected. (a cell has the function of a button).
Since the user can select ranges including several cells the way to limit that problem (not triggering the…

JFerro
- 3,203
- 7
- 35
- 88
0
votes
1 answer
Define SelectionChanged event using C#
I'm trying to define entirely a combobox using C#, however, I got stuck when I want to code the SelectionChanged event.
This is what I've got so far:
ComboBox cmb = new ComboBox();
cmb.Widht=75;
cmb.Margin = new…

Pablo D.
- 172
- 1
- 2
- 11