コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
6405 ビュー

Dear All,

I have developed new popup window that will come while selecting payment method , now i want to given number input in the input column how can i give number input in popup window. I used  this.$('.cell').text(amount); is not working.

アバター
破棄
最善の回答

keyboard are block at payment time in POS . So You need to override both

this.keyboard_handler = function(event){
var key = '';
            if (event.type === "keypress") {
                if($(".your popup div class").not('.oe_hidden').length){
                    return;
                }

              rest of code......
};

and 

this.keyboard_keydown_handler = function(event){
            if($(".your popup div class").not('.oe_hidden').length){
                return;
            }
     rest of code......
};

Thanks


アバター
破棄
関連投稿 返信 ビュー 活動
1
9月 16
5817
0
6月 16
4343
0
11月 19
86
0
4月 24
1938
1
9月 23
2042