dojo使用Programmatic(程序)方式创建form组件没有lable属性的解决

前端之家收集整理的这篇文章主要介绍了dojo使用Programmatic(程序)方式创建form组件没有lable属性的解决前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

dojox/layout/TableContainer,这个容器中的form组件可以带lable属性,并且也会显示,例子如下:

var tb=new TableContainer({

labelWidth:50,//lable的宽度

region:'top'

});

var slan=new Select({

id:"slan",

label:'字体大小',//选择框前面显示的lable

title:"字体大小",Tahoma; line-height:25.600000381469727px"> style:"width: 70px",Tahoma; line-height:25.600000381469727px"> options:[{label:"小",value:"11",style:"font-size::11px"},Tahoma; line-height:25.600000381469727px"> {label:"中",value:"12",style:"font-size::12px"},Tahoma; line-height:25.600000381469727px"> {label:"大",value:"14",style:"font-size::14px"}]

tb.addChild(slan);

原文链接:https://www.f2er.com/dojo/290993.html

猜你在找的Dojo相关文章