我有一个表,并且有三个不同的(Open、Close、Pending),当用户按客户端筛选时,看到相应的值。
但是当用户从例子中改变:打开到关闭表失去了过滤器,有一种方法来尊重gsp视图之间的过滤器吗?
确保在g:select上设置了value=(见下面的代码),页面应该记住这个设置。
<div class="form-group ${hasErrors(bean: searchCommand, field: 'testTypeId', 'has-error')}">
<label for="testType">
Test Type
</label>
<g:select id="testType" name="testTypeId" from="${TestType.findAllByActive(true).sort({it.sortOrder})}" optionKey="id"
value="${searchCommand?.testTypeId}" noSelection="['':'-Choose One-']" class="form-control"/>
</div>