3,472 questions
1
vote
1
answer
136
views
Angular onChange programmatically triggered does not work [closed]
I have a component with an input and some extra and if I edit the input field and leave it by tabbing or clicking outside my change work however if I call onChange via code then nothing happens. Here ...
0
votes
1
answer
101
views
SwiftUI WebSocket, onChange of a StatObject property fail to trigger though property value changes
I use a WebSocketManager to collect messages from a server. There are two types of messages : text messages and data messages. Let us focus on data messages only.
class WebSocketManager: ...
0
votes
2
answers
82
views
Take in multiple numeric inputs and sum in javascript automatically when input is changed
As the title says, I would like to take in and display numerical inputs (specifically, square footage totals), and display them as a sum dynamically whenever the user updates them. There are two ...
0
votes
1
answer
109
views
onBlur firing before onChange when selecting from dropdown - value not saved
I have a React component WidgetInlineEditField that wraps an inline-editable input field. When editing a time value using a TimeInput component with a dropdown, the onBlur event fires before the ...
0
votes
3
answers
145
views
Javascript, Radios And Checkbox: How to make a "checked" item work upon opening
This code is a demonstration of two features, the checkboxes and the radios. A black-bordered box appears with two ways for you to change its style. Check on the checkbox to change the border to a 5px ...
0
votes
1
answer
226
views
How to Display the Pop up Message using On change Client Script
I have a field called AI with Yes and No options. When the user selects "Yes" and the Change Type is "Normal", I need to display a popup message that includes a URL and email (...
0
votes
1
answer
86
views
Picker selection not updating the view
In my app there is a view with several pickers. If I select a value with one of them ($limits[index].from), a value that depends on it should be updated. Unfortunately, this does not work. Only when I ...
0
votes
1
answer
44
views
Next.js submit form wont work and renders more than once
i made a simple login form using next.js and adminlte. But when i submit the form nothing happens. onSubmit won't triggers. I made debug at every input change. In example i type "test" "...
1
vote
1
answer
117
views
The navigation animation and UI break after implementing page blocking for TabView on iOS 18
I need to prevent users from selecting a different tab in TabView. The solution using onChange no longer works on iOS 18.
Steps to reproduce:
Navigate from Home → Details → (UI works as expected)
...
0
votes
1
answer
129
views
How to show 2nd combobox values from a table field based on the 1st combobox value on change event
Please bear with me I am new to Access VBA.
This is my table below:
This is the combobox named cmbTask and has a rowsource property of:
SELECT DISTINCT Task FROM DDValues;
Field Task Values from ...
0
votes
1
answer
256
views
SwiftUI: View method OnChange(of: scenePhase) does not accept 2-argument action
In SwiftUI, I want to use onChange(of:, action:) function for scenePhase, but the build fails.
struct MyView: View {
@Environment(\.scenePhase) var scenePhase
@State private var timerStatus: ...
0
votes
1
answer
411
views
Can I detect changes in Toast UI Editor?
I'm using Toast UI Editor and I'd like to detect when there is a change to the input. Usually I would do something like textarea.addEventListener('change', function) but I haven't been able to find ...
0
votes
2
answers
228
views
Setting a Form DataSet Value without OnChange Event
I am working on an edit form that I need some help figuring out how to automatically set a value on. The initial values are set from an API call to our DB.
Here is the situation. The form allow the ...
1
vote
1
answer
150
views
DragGesture.onChange: for loop overloads CPU and freeze app
I have an app in which you can draw using points, the code presented below is needed so that when one line (already drawn) intersects with current, the current line is deleted.
When I try to do this ...
-2
votes
1
answer
102
views
jQuery multiple forms. Need to catch $(this) forms 'on submit'
I have several forms on a page contain in widget like elements to upload images. There could be one, or there could be 10. Im trying to dynamically, individually catch that particular forms on submit. ...