Giter Site home page Giter Site logo

Event on keydown about jquery.my HOT 2 CLOSED

ermouth avatar ermouth commented on July 24, 2024
Event on keydown

from jquery.my.

Comments (2)

ermouth avatar ermouth commented on July 24, 2024

General approach of $.my is

  1. to simplify coding everyday UI cases,
  2. although keeping thing somehow flexible using declarative markup like events:[evtList],
  3. however allowing maximum flexibility using good old fashoined js code.

So as for your case – put custom bindings into init function, placed inside appropriate ui section. Like:

ui:{
  '#ctrl':{
    init: function ($ctrl) {
      var that = this;
      $ctrl.on ('somevent.my', function (evt){
         // Set some filed in data to 1;
         that.data.doc.otherField = 1;
         // Trigger recalc on some other control
         that.my.trigger ('#someOtherCtrl', 'recalc');
      });
    },
    bind:'doc.field'
  }
}

Here your control reacts by default and puts/gets its value into doc.field when default event happens, although on custom event control does something completely different.

Note, that syntax somevent.my with .my namespace guarantees your handler will be automatically unbound on form destroy.

from jquery.my.

dubrod avatar dubrod commented on July 24, 2024

i wish i could say that was the solution but i didnt really understand it.
It was helpful though

It did cause me to rethink the manual trigger i put in.

I had it looking to the parent b/c the parent had a "manifest ID" i think you call it. but looking at the init you are placing on #ID i re-triggered the keydown for it.

so...

.... if (e.keyCode == 13) {
var target = $(this).children("#id");
target.trigger("click");
}

and it loads the form just like a click.

from jquery.my.

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.