I am using this code to pre-select dropdown by key...
// Pre-select the selected competency for(int i = 0; i < wdContext.nodeCoreCompetency().size(); i++){ if(wdContext.nodeCoreCompetency().getElementAt(i).toString().equals(wdContext.currentCourseDetailsElement() .getCoreCompetency())){ wdComponentAPI.getMessageManager().reportSuccess("Match found: "+i); wdContext.nodeCoreCompetency().setLeadSelection(i); break; } }
What is wrong with above code.
Thanks
Srinivas