When I am debugging one of my list I am using something like this.
this.list.dom;
Here What I am getting, some div which I is something like that.
this.list.dom.outerHTML
<div class="x-layer x-combo-list " id="ext-gen389" style="position: absolute; z-index: 12005; visibility: visible; left: 315px; top: 175px; width: 228px; height: 22px; font-size: 11px;">
<div class="x-combo-list-inner" id="ext-gen390" style="width: 228px; overflow: auto; height: 22px;">
<div class="loading-indicator">Searching, please wait...</div>
</div>
</div>`
Now I want to add some div in side the this.list.dom
. This should bve like this.
this.list.dom.outerHTML
'<div class="x-layer x-combo-list " id="ext-gen389" style="position: absolute; z-index: 12005; visibility: visible; left: 315px; top: 175px; width: 228px; height: 22px; font-size: 11px;">
<div class="x-combo-list-inner" id="ext-gen390" style="width: 228px; overflow: auto; height: 22px;">
<div class="loading-indicator">Searching, please wait...</div>
</div>
<div style="border: solid 3px #000; padding: 2px;">Message</div>'
Can anyone suggest me how to add this. I am new in client side.