将表单控件与 bootstrap 和 Syncfusion 小部件内联对齐
Aligning form control inline with bootstrap and Syncfusion widget
我正在尝试对齐 syncfusion js 小部件,一个下拉列表,以 内联 显示它与标签。
我正在使用 bootstrap 3.
我无法很好地对齐它们,我的意思是将标签的中间与下拉列表的中间完美对齐。
好像是syncfusion插件的问题。
您可以使用cssClass property in DropDownList control to set the Bootstrap’s “form-group” class. Once the DropDownList control is rendered the input element will be made hidden, hence adding “form-group” to the input element directly will not work. Check the updated JSPlayground sample。
我正在尝试对齐 syncfusion js 小部件,一个下拉列表,以 内联 显示它与标签。 我正在使用 bootstrap 3.
我无法很好地对齐它们,我的意思是将标签的中间与下拉列表的中间完美对齐。
好像是syncfusion插件的问题。
您可以使用cssClass property in DropDownList control to set the Bootstrap’s “form-group” class. Once the DropDownList control is rendered the input element will be made hidden, hence adding “form-group” to the input element directly will not work. Check the updated JSPlayground sample。