列表项的可变高度

Variable height of the list items

我正在尝试将 Webix ui.list 用于多行文本数据。像

webix.ui({  
  view:'list', 
  data: [
    { id:1, value:'A' }, 
    { id:2, value:'B<br>B' }, 
    { id:3, value:'C<br>C<br>' }    
  ],
  template: '#value#', 
});

(snippet)

但是我找不到任何方法来设置列表项的可变高度。有办法吗?

您需要将 "list" 的 "type" 属性添加为 type:{ height:"auto"} 在您的代码中,它将根据内容大小调整列表项的高度。