I defined a document datasource(called document1) in a panel in my extlib dialog box. Within this panel, it contains dialog content and dialog butotn bar. Within the dialog content, in contains a custom control that has all the components likes dojo edit box, list box, radio butotn etc. Within the dialog button bar, it contains a Save button. On save, I could not get the value from any component by the following getComponent, document.getDocument.getxxx:
print (getComponent.getValue("control"));
print (document1.getDocument(true).getValueInString("control"));
print (document1.getValue("control"));
Interesting to do know that document1.sertValue("control", newvalue) and document1.getDocument(true).isNewNote() are all working.
The dialog box is opened from a view column in the repeat. All data are shown in dialog box corerctly. I could save the modified data, retrieve them and display them with no issue. The only thing that i could not get their values for processing.
The Save event handler is full update with set partial execution mode for the panel
panel is ignore its parameter and set scope to request but no luck.
Your help is really appreciated. Thanks in advance.