I have an EO dialog box created with an EO datagrid inside of the dialog box. Those two controls are placed within EO callback panel. I am able to successfully initiate the call back to the server to populate the EO datagrid (I know this through debugging), however, after the callback to the server to populate the datagrid, I am unable to get the display to show on the web page.
On the EO callback panel I have placed the following javascript function in the ClientSideAfterExecute = showDlg
Code: JavaScript
function showDlg(callback){
alert("about to show dialog");
eo_GetObject("dlgWindow").show();
}
When the javascript executes it first shows the alert and when I click on "OK" I get the following error:
EO.Web Controls Client Side Debug Message:
An error occurred while applying the new output. Error message: 'null' is null or not an object...
I suspect I am doing something wrong with where I am placing the eo_GetObject function. I have tried putting the eo_GetObject function directly in the ClientSideAfterExecute and that does nothing at all.
Any assistance would be greatly appreciated.