You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be helpful if there were a way to track when a ReactiveCommand is executing. This can be helpful in many UI scenarios. For example, when a button click is bound to a command, you may want the button to remain disabled while execution is performed. I believe that ReactiveCommand<T> and ReactiveCommand<TInput,TOutput> could be extended to provide this by wrapping the execution or convert/Async, respectively.
Is this functionality that would be considered for R3?
Below is just a simple pseudo implementation of the concept. I am sure that there is a far more elegant way to approach this, but just wanted to put this here to show the functionality.
It would be helpful if there were a way to track when a ReactiveCommand is executing. This can be helpful in many UI scenarios. For example, when a button click is bound to a command, you may want the button to remain disabled while execution is performed. I believe that
ReactiveCommand<T>
and ReactiveCommand<TInput,TOutput> could be extended to provide this by wrapping theexecution
orconvert/Async
, respectively.Is this functionality that would be considered for R3?
Below is just a simple pseudo implementation of the concept. I am sure that there is a far more elegant way to approach this, but just wanted to put this here to show the functionality.
The text was updated successfully, but these errors were encountered: