Originally posted by anitha vasikarla:
if (templateList != null && !templateList.isEmpty()) {
templateLable = new ArrayList();
for (int i = 0; i < templateList.size(); i++) {
Template lableValueset = (Template) templateList.get(i);
if (lableValueset != null) {
LabelValueBean lvb = new LabelValueBean(lableValueset.getTemplateName(),
In this code "LabelValueBean " used what is the use of that one,how it works.
Hi Anitha
LabelVauleBean is bean to represent label-value pairs. It is use to construct <html

ptions> elements which have a label to display and corresponding value to return to the server
LDR