Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6014507
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T02:42:08+00:00 2026-05-23T02:42:08+00:00

I create a new element inside Ext.Panel by template i want to add an

  • 0

I create a new element inside Ext.Panel by template

i want to add an click event to p#more element

if i put:

Ext.select('#more').on('click', function() {
 // my code
});

inside handler: function() of Ext.Panel it works

but then i update the html inside the panel and event is not working anymore!!!

is there an listener for newly created DOM elements I can put my click event inside?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T02:42:09+00:00Added an answer on May 23, 2026 at 2:42 am

    When you replace the HTML, all the events that were attached to children nodes stay linked to them, but the nodes do not exist anymore in the DOM.

    And the events are not translated magically to new nodes either.

    If you replace the HTML you need to attach the events to a parent node that will stay.
    This is called event delegation.

    You need to use target or srcElement(IE) to get the element that triggered the event, eg:

    Ext.select('#parent-of-more').on('click', function(ev) { 
      var elm = ev.target || ev.srcElement;
      //elm is the element that was clicked
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a script that create a new div element. Then, I want to
This is frustrating, I want to simply create new input field inside div on
After dynamically creating an element with this: $('#btnAddBanner').click(function () { var uid = new
I cant get this to work, I want to create a new element DIV
I am trying to create a new Element in my javascript code and append
So as the title suggests I wish to create a new dom element (the
Using Prototype 1.6's new Element(...) I am trying to create a <table> element with
I create new desktop with CreateDesktop and want to get it's DC & RC.
I'm new to javascript and I am attempting to create an element with certain
I want to use jQuery to create a new div on the page when

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.