datagrid里的textbox的高度怎么调到跟datagrid行高一样
写个样式覆盖原控件的高度
API里面有个editorHeight配置,但是配置了没用,不懂是不是bug
editorHeight number The default height of the editors.
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
<style>/*注意自己调整高度,height和line-height*/
.datagrid-row .textbox-text, span.textbox {
height: 50px !important;
line-height: 50px;
}
</style>