
This often happens with navigation menu options or dropdown controls, where you have the menu options or dropdown options visible on the screen but as soon as you click something in Developer Tools (to go exploring), the menu options or dropdown options disappear and don’t exist on the page anymore! This is usually because an event such as the blur event is fired when you click outside the element and this removes the elements from the page that you are trying to inspect. This tip might not work in all scenarios but it has gotten me out of trouble on a few occasions. Think of text expanders as similar to the auto-complete or predictive typing on your smartphone. On the left side of the screenshots you can see the OnePlaceMail (Outlook Add-in) displayed in Chrome, on the right hand side is Developer Tools inspector window. Text expanders use custom abbreviations to insert words or phrases for you automatically. Insurance transcriptionists often come across the phrase accident report. With a text expander, you can eliminate ever needing to type this phrases out.

I’m using a 3rd party control for my “Content Type” dropdown (it’s the Kendo UI for Angular library) When collapsed it’s easy to inspect the kendo-dropdownlist element (that holds the selected value of ‘Document’. At this stage the menu options that will appear when I click on the dropdown don’t even exist in the DOM. When I do click to expand the dropdown, the image below shows that a new kendo-popup element appears in the DOM (and it contains sub-elements to represent each of the options). But the problem is if we now try to use the Developer Tools and expand that kendo-popup element to see those sub-elements then the dropdown collapses (because I’ve click off it) and the kendo-popup element is removed from the DOM and we’re left with nothing to inspect! Auto replace will complete or replace the word you are typing with the word it thinks is the most likely for the sentence. As you type, words will be highlighted blue in the middle space of the predictive text bar. To insert the highlighted word, tap the space bar or enter key.
#Auto text expander chrome not working windows
Does Windows have a built in text expander FastKeys is actually an all-in-one Windows automation system that allows you to automatically control Windows programs and settings using commands. So to work around this in the Developer Tools inspector, right click on the element that is driving the elements to appear/disappear (kendo-dropdownlist) and select Break on | subtree modifications.


#Auto text expander for google chrome disappeared windows Now go to the web page and click on the dropdown to show the dropdown options. They are shown (elements added to the DOM) but the Developer Tools inspector now goes into a paused state. While in this paused state, you can now return to the elements tab and we can expand and explore that pesky kendo-popup element that was dynamically created.
