does SignalR has any functionality to handle user1 is typing alert to user2 that user1 is currently typing?
the examples i have seen out there is all in ajax or jquery. this is for CHAT between users using SignalR
does SignalR has any functionality to handle user1 is typing alert to user2 that
Share
We do this on focus and on blur events of text field. We call a function on hub that broadcast a simple message about user to all clients like typing=true with id set to connection id from context. Then in client this highlights the user with underline or different colour to see user is busy typing something. In our app multiple users can type but you get the concept.
You need 3 things basically
We use it on focus and raise a flag so we dont send too many requests to server but you can optimise it in various ways.