> Tech > Listing 3

Listing 3

Tech - Par Renaud ROSSET - Publié le 24 juin 2010
email

Procédures ShowActions et InvokeURLAction côté client

<script language=vbscript>

  Sub ShowActions(strTableName)
    ‘ Toggle the display of the Action list.
    If document.all(strTableName).style.display = “block” Then
      document.all(strTableName).style.display = “none”
    Else
      document.all(strTableName).style.display = “block”
    End If
  End Sub
  
  Sub InvokeURLAction(strURL, strTableName)
  ‘ Open the URL in a new window and hide the Action table.

window.open(strURL)
document.all(strTableName).style.display = “none”
End Sub

</script>

Téléchargez cette ressource

Guide inmac wstore pour l’équipement IT de l’entreprise

Guide inmac wstore pour l’équipement IT de l’entreprise

Découvrez toutes nos actualités à travers des interviews, avis, conseils d'experts, témoignages clients, ainsi que les dernières tendances et solutions IT autour de nos 4 univers produits : Poste de travail, Affichage et Collaboration, Impression et Infrastructure.

Tech - Par Renaud ROSSET - Publié le 24 juin 2010