Hi,
I have a context menu that execute client side code only. [I have taken out the DIVs as they messed up the code when posting].
function gMapHybrid() {
Map1.SetCurrentBackgroundMapType(G_HYBRID_MAP); return false;
}
ContextMenuItem contextMenuViewHybrid = new ContextMenuItem(" onclick=JavaScript:gMapHybrid();>Hybrid");
Once the client side function executes the context menu remains on screen. Is there a way to remove the popup memu after t the function has completed without a postback.
Liam