marat-gainullin / platypus-js

Apache License 2.0
9 stars 9 forks source link

Exist Event onKeyPressed to modelGrid ? #76

Closed Level0r0s closed 8 years ago

Level0r0s commented 8 years ago

is possible example to use?

tanks

marat-gainullin commented 8 years ago

I think it is not implemented, but it is nothing impossible, due to Ctrl+F and F3 hot keys exisitance. We will review this question on monday.

marat-gainullin commented 8 years ago

`
form.modelGrid.onKeyPressed = function (evt) { Logger.info('key ' + evt.key + ' pressed'); };

    form.modelGrid.onKeyReleased = function (evt) {
        Logger.info('key ' + evt.key + ' released');
    };

`

Available in nightly build (on branch master).

Level0r0s commented 8 years ago

Tanks. Very good