Hi, merry Christmass.

I am having problem remember how to use the API. If I understood correctly:


1. you can call a function outside the DynAPI.onLoad, ONLY IF the layer was 
defined inside the DynAPI. Hence this is possible:

function test()
{
   layerInfo.setVisible(true)
}
DynAPI.onLoad = function()
{
   layerInfo = new DynLayer(null,0,0,200,300,'white',false,7)
}



2. You cannot call a function outside the DynAPI.onLoad, IF the layer is 
inline. Hence ONLY the following case is possible:

DynAPI.onLoad = function()
{
   function test()
   {
      layerInfo.setVisible(true)
   }
   layerInfo = document.getAll()['layerInfoDiv']
}


So what's my question? I have a form inside an inline layer. When the user 
clicks on one of the two pictures inside that layers, he will submit the 
form, except that one of the value of the form will be change. How can I do 
that?? It seems that I cannot use neither methods I mention at the begining.

_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp.


_______________________________________________
Dynapi-Help mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dynapi-help

Reply via email to