0

在一个页面中有 35 个文本字段。我想管理如果 Product Not Procured 那么页面上只显示 9 个字段,填充页面后

当我们将状态更改为 Product Procured Not Shipped 时,在填充页面后,它会显示另外 6 个字段

当我们更改状态订单已发货时,它显示 9 字段,然后在填写页面后

当我们更改状态订单已交付时,它显示 3 个字段,然后在填写页面后......请帮帮我

4

1 回答 1

1

隐藏元素使用

    dojo.style(elementId, "visibility", "hidden");

检查枚举的值

    var orderStatus = document.getElementById('_elementName_id').value;
    if(orderStatus != "Product_Not_Procured")
于 2013-05-28T08:16:43.867 回答