在struts 2中Optiontransferselect的moveSelectedOptions似乎不起作用

发布于 2024-08-14 04:01:52 字数 85 浏览 3 评论 0原文

我有一个选项transferselect,左侧列表框有几个值。当我尝试将值向右移动时,按钮不起作用。当我单击“移动选择”按钮时,没有发生错误。值也不会移动。

I have a optiontransferselect and the left list box has a couple of values. When I try to move the values to the right .the button doesnt work. There is no error occuring when i click on the moveselect button .The values dont move either.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

与酒说心事 2024-08-21 04:01:52

问题似乎在于所分配的值。如果列表的值类似于“19090-123242”,当有连字符和后面的1时,javascript似乎将其视为-1 headerkey值,并且不会将其移动到另一个框。它是一个 struts 错误。

The issue seems to be with the value that is being assigned . If the value of list has something like this "19090-123242" , when there is a hypen and a 1 following , the javascript seems to take it as the -1 the headerkey value and does not move it to the other box. Its a struts bug.

邮友 2024-08-21 04:01:52

我遇到了与 struts-tagss:optiontransferselect 组件相关的问题。允许向右和向左移动项目的按钮不起作用,但它只发生在 Internet Explorer(IE7 和 IE8)中。它适用于 FireFox 和 Chrome。

就我而言,我也使用 Ajax,并且有两个 .JSP 文件(一个用于主表单,第二个仅用于 optiontransferselect 组件),并且我已包含 sx:div main.jsp 中的 struts-dojo-tags 组件,用于根据 中选择的值加载 listdobleList optiontransferselect 属性:选择组件。

这是我的pom依赖项,我不知道它可以帮助你找出问题:

    <dependency>
        <groupId>org.apache.struts</groupId>
        <artifactId>struts2-spring-plugin</artifactId>
        <version>2.1.6</version>
    </dependency>

    <dependency>
       <groupId>org.apache.struts</groupId>
       <artifactId>struts2-dojo-plugin</artifactId>
       <version>2.1.6</version>
    </dependency>

非常感谢!

I have a problem linked with s:optiontransferselect component of struts-tags. Buttons that allow move items right and Left don't work, but it only happen in Internet Explorer (IE7 and IE8). It works in FireFox and Chrome.

In my case I'm working with Ajax too and I have two .JSP files (one for main form and second only for optiontransferselect component) and I've included sx:div component of struts-dojo-tags in main.jsp to load list and dobleList optiontransferselect attributes based on value selected in s:select components.

Thats my pom dependencies, I don't know it it can help you to find out the problem:

    <dependency>
        <groupId>org.apache.struts</groupId>
        <artifactId>struts2-spring-plugin</artifactId>
        <version>2.1.6</version>
    </dependency>

    <dependency>
       <groupId>org.apache.struts</groupId>
       <artifactId>struts2-dojo-plugin</artifactId>
       <version>2.1.6</version>
    </dependency>

Thank you so much!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文