Hello All,
I'm new to Documentum and WDK. I have tried a simple stuff creating a WDK component and deployed on to the webtop in tomcat.
I have crated a textarea and I'm able to see the created component but still in log it is showing below exception.
Error : java.lang.IllegalArgumentException: Control name tarea contains an illegal character:
Below one is my component code:
@Override
public void onRender() {
// This method will be invoked when the page is rendered
super.onRender();
System.out.println("onRender called!");
try{
TextArea tArea=(TextArea)getControl("tarea ",TextArea.class); //The error is reported here
if(tArea!=null){
//System.out.println("Text Area not null");
tArea.setValue(tArea.getValue());
}
}
catch(Exception e){
e.printStackTrace();
}
}
Any help in this regard is highly appriciated.
Thanks in advance
Regards,
Anil