如何在 Struts2 中获得特定的未选中复选框 [英] How to get the specifc unchecked checkboxes in Struts2

查看:14
本文介绍了如何在 Struts2 中获得特定的未选中复选框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的应用程序中,我正在打印一些文档以及一些复选框(页面加载时默认情况下会选中一些复选框)针对某些特定操作.

In my application I am printing some document along with some checkboxes (Some checkboxes get checked by default when page loads) on some specific action.

现在用户将选中一些复选框或取消选中一些复选框.并点击更新按钮.

Now user will Check some checkboxes Or may uncheck some. And clicks on update button.

现在我的要求是我想要未选中的复选框值.

例如:

当页面第一次加载时,有 5 个复选框被选中大约 700 个复选框中的默认值;

When the page loads first time there are 5 checkboxes checked by default out of some 700 check boxes;

现在用户将取消选中 2 个复选框并点击提交.

now user will uncheck 2 checkboxes and clicks on submit.

我的要求在这里我想要那些 2我的操作类中未选中的复选框值.

My requirement is here I want those 2 unchecked checkboxes values in my action class.

我正在使用 Struts2 打印这些文档.我正在使用 Struts2-jQgrid,我尝试过 Struts2 CheckboxInterceptor 来获取未选中的复选框,但它给了我所有未选中的复选框,而不仅仅是所需的复选框(那些改变了状态).

I am using Struts2 to print those documents. I'm using Struts2-jQgrid, I have tried Struts2 CheckboxInterceptor to get the unchecked ones but it's giving me all the unchecked checkboxes, not only the desired ones (the ones that changed their state).

推荐答案

假设您从迭代自定义对象列表开始,

Assuming you start by iterating a List of custom objects,

private List<MyCustomObject> myList;

并且您的自定义对象具有例如.boolean isChecked()String getValue() 方法,

and that your custom object has eg. boolean isChecked() and String getValue() methods,

您可以在目标操作中使用两个不同的列表:一个用于未选中但现在已选中的项目,另一个用于已选中但现在未选中的项目强>:

you could use two different Lists in the destination Action: one for the items that were unchecked and now are checked, and another one for items that were checked and now are unchecked:

private List<String> itemsThatHaveBeenChecked;
private List<String> itemsThatHaveBeenUnchecked;

然后在页面中,您应该使用经典复选框来获取选中的项目,并使用隐藏输入来存储未选中项目的值,使用与复选框值相反的javascript激活其值(必须没有名称):

then in the page you should use a classic checkbox to get the checked items, and an hidden input to store the value of the unchecked items, activating its value with javascript as opposite to the checkbox value (that must have no name):

<s:iterator value="myList" status="ctr">
    <s:if test="!isChecked()">
        <!-- I'm not checked, need to catch only if I will be checked -->
        <s:checkbox id = "checkbox_%{#ctr.index}" 
            fieldValue = "%{getValue()}"
                 value = "false" 
                  name = "itemsThatHaveBeenChecked" />
    </s:if>
    <s:else>
        <!-- I'm checked, need to catch only if I will be unchecked -->
        <input type = "checkbox" 
                 id = "<s:property value="%{'checkbox_'+#ctr.index}"/>"
            checked = "checked"
              class = "startedChecked" />
        <!-- hidden trick -->
        <input type = "hidden" 
                 id = "hidden_<s:property value="%{'checkbox_'+#ctr.index}"/>" 
              value = "<s:property value="%{getValue()}"/>"         
               name = "itemsThatHaveBeenUnchecked" 
           disabled = "disabled" />            
    </s:else> 
</s:iterator>

<script>
    /* Enable the hidden field when checkbox is unchecked, 
      Disable the hidden field when checkbox is checked    */
    $(function() {
        $("input[type='checkbox'].startedChecked").change(function () {
            $("#hidden_"+this.id).prop({disabled : this.checked});
        });
    });
</script>

这样您将只获得两个列表中所需的值.

This way you will get only the values needed in both Lists.

这篇关于如何在 Struts2 中获得特定的未选中复选框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆