I am facing one problem that I have specified the Docbaseattributevalue tag in my custom jsp i.e., of Time type and it is of repeating attribute.Know I want to get the each date in my java class.if it is of String type I can get by
DocbaseAttributeValue docbaseAttrCtlValue=(DocbaseAttributeValue) getControl("dbvclrDocDate", DocbaseAttributeValue.class);
String strvalue = docbaseAttrCtlValue.getvalue();
String strA[] = strvalue.split(",");
But for date I canot do this because if I split by " , " then I am spliting at suppose Oct 3 and year is not comming.
How can I solve this please help me in this.
How can I save this it in object as this is a reapting attribute.