如果列表中还存在其他小部件(例如文本和文本框),那么如何在列表之间导航?

时间:2019-03-20 12:04:46

标签: javascript node.js terminal-emulator blessed

我正在使用NodeJS中的有福软件包来构建终端应用程序, 我无法正确浏览列表中的项目。如果我按下向下箭头,它将向下移动1个项目,并将焦点更改为表单中的下一个小部件。

这是我创建的列表对象:

var numlist = blessed.List({
    top:23,
    left:18,
    parent:form1,
    height:8,
    width:20,
    mouse:true,
    keys:true,
    items:["4","5","6"],
    border:{
      type:'line'
    },
    style:{
      selected:{
        bg:'blue',
        fg:'white'
      },
      item:{
        bg:'white',
        fg:'blue'
      },
      focus:{
        bg:'red'
      }
    }
  });

0 个答案:

没有答案