I have a twinColSelect and i m populating this from database. I need to access its selected items. I tried below the code but it didn't worked. How can i do that ?
ArrayList<String> systemNames = new ArrayList<String>();
systemNames = (ArrayList<String>) twinColSelectSystem.getValue();
for (int i=0;i<systemNames.size();i++)
System.out.println(systemNames.get(i));