We will be adding another page to the Client Management application which you created in the Client Quick Add lesson. This page will display a grid of clients, a search panel, and an add window.
Click on the Source tab and add the following JavaScript to the Head tag
<script language="javascript"> function clientCreated() { parent.newClientPage.close(); } </script> |