Javascript to set a focus in update panel
1 min read
Add Below js file in your project var lastFocusedControlId = ""; function focusHandler(e) { document.activeElement = e.originalTarg et; } function appInit() { if (typeof(window.addEventListener)... Read More
