-1

そのため、同僚のコードを編集する必要がありますが、データが存在しないときにパネルが非表示になるように調整する方法がわからないようです。現在、データが存在しない場合は null を返します。顧客が利用できる情報がある場合は、完全な情報が表示されます。なければパネルを非表示にしたい。これは、サイト全体で使用される再利用可能なパネルでもあります。これを機能させるには、何を調整する必要がありますか?

@Override
protected void onInitialize()
{
    // TODO Auto-generated method stub
    super.onInitialize();        


    if(customer != null)
    {
        loadWithCustomer();
    }
    else
    {
        loadWithNoCustomer();
    }


}

@Override
protected void onBeforeRender() 
{
    super.onBeforeRender();

    AjaxLink<Void> createOrderLink = makeCreateOrderLink(customer);

    SkinnyBuSession session = (SkinnyBuSession) Session.get();      
    if(session != null && session.getCustomer() == null)
        createOrderLink.setEnabled(false);

    addOrReplace(createOrderLink);
}

private void loadWithCustomer()
{
    addOrReplace(new Label("heading",  customer.getAccountName()));


    Contact contact = null;
    if( customer.getContacts() != null && customer.getContacts().size() > 0)
    {
        contact = customer.getContacts().get(0);
    }
    else
    {
        contact = new Contact();//makeUpJunkContactForNow();
        customer.getContacts().add(contact);
    }
    Address address = null;
    if( customer.getAddresses() != null && customer.getAddresses().size() > 0)
    {
        address = customer.getAddresses().get(0);
    }
    else
    {
        address = new Address();//makeUpJunkAddressForNow();
        customer.getAddresses().add(address);
    }

    String phone = contact.getPhoneNumber() != null ? contact.getPhoneNumber().getNationalNumber() : "";
    if (phone != null && phone.length() == 10)
    {
        phone = String.format("(%s) %s-%s", phone.substring(0, 3), phone.substring(3, 6),phone.substring(6, 10));
    }       

    addOrReplace(new Label("accountName", customer.getAccountName()));
    addOrReplace(new Label("address1", address.getAddressLine1()));
    addOrReplace(new Label("address2", address.getAddressLine2()));
    addOrReplace(new Label("city", address.getCityName() + ","));
    addOrReplace(new Label("state", address.getStateCode()));
    addOrReplace(new Label("postalCode", address.getPostalCode()));
    addOrReplace(new Label("contactName", contact.getName()));
    addOrReplace(new Label("email", contact.getEmailAddress()));
    addOrReplace(new Label("phone", phone));        

}

private void loadWithNoCustomer()
{
    Label heading = new Label("heading", "");
    addOrReplace(heading.setVisible(false));

    addOrReplace(new Label("accountName", "").setVisible(false));
    addOrReplace(new Label("address1", "").setVisible(false));
    addOrReplace(new Label("address2", "").setVisible(false));
    addOrReplace(new Label("city", "").setVisible(false));
    addOrReplace(new Label("state", "").setVisible(false));
    addOrReplace(new Label("postalCode", "").setVisible(false));
    addOrReplace(new Label("contactName", "").setVisible(false));
    addOrReplace(new Label("email", "").setVisible(false));
    addOrReplace(new Label("phone", "").setVisible(false));

}
4

1 に答える 1

3

onConfigure をオーバーライドすると、おそらく次のようなことができます。

@Override
protected void onConfigure() {
     super.onConfigure();
     setVisible(customer != null);
}
于 2013-02-20T00:19:52.330 に答える