Coder Social home page Coder Social logo

Comments (8)

jerosoler avatar jerosoler commented on May 12, 2024 1

Hi @MehbubRashid

The javascript change not fire events.
You can send the input event this way when changing the data.

document.querySelector("#node-1 > div.drawflow_content_node > div > input[type=text]").value = "hey MehbubRashid";
var evt = document.createEvent("HTMLEvents");
evt.initEvent("input", true, true);
document.querySelector("#node-1 > div.drawflow_content_node > div > input[type=text]").dispatchEvent(evt);

from drawflow.

MehbubRashid avatar MehbubRashid commented on May 12, 2024

thanks @jerosoler , i will try it soon

from drawflow.

jerosoler avatar jerosoler commented on May 12, 2024

You can also call it like this

document.querySelector("#node-1 > div.drawflow_content_node > div > input[type=text]").value = "hey MehbubRashid";
var event = new Event('input', {
    bubbles: true,
    cancelable: true,
});
document.querySelector("#node-1 > div.drawflow_content_node > div > input[type=text]").dispatchEvent(event);

from drawflow.

MehbubRashid avatar MehbubRashid commented on May 12, 2024

works! thanks

from drawflow.

MehbubRashid avatar MehbubRashid commented on May 12, 2024

You can also call it like this

document.querySelector("#node-1 > div.drawflow_content_node > div > input[type=text]").value = "hey MehbubRashid";
var event = new Event('input', {
    bubbles: true,
    cancelable: true,
});
document.querySelector("#node-1 > div.drawflow_content_node > div > input[type=text]").dispatchEvent(event);

Hi, @jerosoler , i am just curious..can you provide a jquery implementation of this event fire code? because the jquery trigger() method is not working here..only the vanilla javascript dispatch is working.

from drawflow.

MehbubRashid avatar MehbubRashid commented on May 12, 2024

Okay i have found the issue, wordpress uses pretty old version of jquery(1.12..) that version does not bubble up while using trigger() method..that might be causing the issue.

from drawflow.

jerosoler avatar jerosoler commented on May 12, 2024

Mmmm...

Try https://api.jquery.com/category/events/event-object/

Also with jquery you can mix javascript.

from drawflow.

MehbubRashid avatar MehbubRashid commented on May 12, 2024

Mmmm...

Try https://api.jquery.com/category/events/event-object/

Also with jquery you can mix javascript.

Yeah, i have mixed up js with jquery..but i was curious why jquery trigger was not working..then i came to find that my jquery version is very old and does not bubble up event

from drawflow.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.