我在我的ember app中使用jquery builder。我使用jquery拖放功能将值删除到输入字段。我的拖放功能正常工作但是一旦将值删除到查询构建器的输入字段,然后在保存时出现此错误"无法读取属性' condition' of null"。 这最终意味着特定输入字段不接受drpped值。如何解决这个问题??
我在控制器中的代码:
<!DOCTYPE html>
<html>
<head>
<title>Gallery</title>
<style>
ul {list-style: none}
</style>
</head>
<body>
<div class="row">
<ul>
<!-- first row -->
<li class="col-md-6"><img src=""></li>
<li class="col-md-2"><img src=""></li>
<li class="col-md-2"><img src=""></li>
<li class="col-md-2"><img src=""></li>
<!-- second row -->
<li class="col-md-5"><img src=""></li>
<li class="col-md-5"><img src=""></li>
<li class="col-md-2"><img src=""></li>
<!-- third row -->
</ul>
</div>
</div>
</body>
</html>
Height of the image must be same but width can vary.
Total screen contains 12 columns. According to the style choose the
column size.