My action form just contains one attribute of type Profile. Profile has an attribute address that is of type Address. If i want to validate City, how do I do it using validation.xml file. If I use . (dot) to navigate from profile to Address, property attribute wont recognize it. I strictly want to use validation.xml file to do that.
-----------------------------------------------------
public final class profileForm extends ActionForm{
private Profile profile;
}
public class Profile {
String name
String phoneNumber
Address address
}
public class Address {
String Street;
String City;
String State;
String Zip;
}
This code is not working for us.
-----------------------------------------------------------
<form name="profileForm">
<field property="address.city" depends="required">
<arg key="profileForm.address.city" position="0"/>
</field>
</form>
-----------------------------------------------------------
-----------------------------------------------------
public final class profileForm extends ActionForm{
private Profile profile;
}
public class Profile {
String name
String phoneNumber
Address address
}
public class Address {
String Street;
String City;
String State;
String Zip;
}
This code is not working for us.
-----------------------------------------------------------
<form name="profileForm">
<field property="address.city" depends="required">
<arg key="profileForm.address.city" position="0"/>
</field>
</form>
-----------------------------------------------------------