We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Current scope of #386 and #483 includes Mouse Clicks as input but not keyboard entry and also specify select actions for different controls
Expands support for Text Entry to relate the keyboard events to the control that has focus and update the Power Fx as
SetProperty(InputControl.Text,"Value Typed"); SetProperty(RadioGroupCanvas1.DefaultSelectedItems, "Item 1"); SetProperty(RadioGroupCanvas1.DefaultSelectedItems, "Item 2"); SetProperty(DropdownCanvas1.Selected, "Test 1"); SetProperty(DatePickerCanvas1.SelectedDate, Date(2024, 12, 31)); SetProperty(Toggle1.Value,"On");
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem? Please describe.
Current scope of #386 and #483 includes Mouse Clicks as input but not keyboard entry and also specify select actions for different controls
Describe the solution you'd like
Expands support for Text Entry to relate the keyboard events to the control that has focus and update the Power Fx as
SetProperty(InputControl.Text,"Value Typed");
SetProperty(RadioGroupCanvas1.DefaultSelectedItems, "Item 1");
SetProperty(RadioGroupCanvas1.DefaultSelectedItems, "Item 2");
SetProperty(DropdownCanvas1.Selected, "Test 1");
SetProperty(DatePickerCanvas1.SelectedDate, Date(2024, 12, 31));
SetProperty(Toggle1.Value,"On");
Describe alternatives you've considered
No response
Additional context?
No response
The text was updated successfully, but these errors were encountered: