如何在ngx-formly中固定标签上的布局复选框?

时间:2019-05-21 11:26:40

标签: angular typescript bootstrap-4

控制复选框出现在标签上方。 这是控件声明: Image of the error

{  
   key: 'checked', 
   type: 'checkbox',                    
   templateOptions: {
      label: 'Bollo virtuale',     
      indeterminate: false,                              
   },
}

1 个答案:

答案 0 :(得分:0)

使用引导程序:

{  
   key: 'checked', 
   type: 'checkbox',                  
   className: 'inline pr-1',
   templateOptions: {
      label: 'Bollo virtuale',     
      indeterminate: false,                              
   },
}