bootstrap-editable 行内编辑 text textarea date 等控件位置

{
	field : 'contentLink',
	title : '内容链接',
	width : 300,
	editable : {
		type : 'textarea',
		title : '链接',
		placement: 'right',//单元格右侧显示文本编辑
		emptytext : "--",
		validate : function(value) {
			if (value.length > 100) {
				return "内容链接不能超过100个字符!";
			}
		}
	}
},
发布了99 篇原创文章 · 获赞 55 · 访问量 32万+

猜你喜欢

转载自blog.csdn.net/torpidcat/article/details/103886863