ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Version: 2026

<Variable sshSession>DisconnectCommand (Function)
Enables you to stop an SSH session that was active, to allow multiple commands to be sent as a group. This new function is available from WINDEV Suite SaaS 2025 - Update 2....
<sshSession variable>.Write (Function)
Writes data into the specified SSH session.
<WBAdminAuth variable>.ListConnection (Function)
Returns the list of current connections on a WEBDEV Application Server.
<WBAdminAuth variable>.Disconnect (Function)
Deletes a connection from a WEBDEV Application Server.
<htmlNode variable>.InsertBefore (Function)
Adds a node before the specified node in an HTML document.
<htmlNode variable>.InsertLastChild (Function)
Adds a child after the child of the current node in an HTML document.
<Variable sshSession>Command (Function)
Sends a command to an SSH server. The session is automatically started and closed as soon as the command is sent.
<htmlNode variable>.Remove (Function)
Removes the specified node and its descendants in an HTML document.
Manipulating Dockable Panel controls programmatically
A Dockable Panel control can be handled programmatically......
<Variable sshSession>CommandConnector (Function)
Keeps the SSH session active between several commands sent (via the SSHCommand function) to an SSH server. This new function is available from WINDEV Suite SaaS 2025 - Update 2....
<htmlDocument variable>.FindElementByName (Function)
Searches for elements whose "name" attribute matches a specific value in an HTML document.
<htmlNode variable>.UnwrapAllChildren (Function)
Deletes the specified node in an HTML document without deleting its children, which take its place.
<htmlNode variable>.InsertFirstChild (Function)
Adds a child at the start of the children of the current node in an HTML document.
<pdfDocument variable>.NbSignatures (Function)
Gets the number of signatures in a PDF document.
<Map>.ChangeStyle (Function)
Changes the style of the map displayed in the Map control. As of version 2025 Update 2, this function is no longer available. The management of map styles has been modified by Google. It is now necessary to define map styles in the Google platform and then use the MapIDGgl function to manage map styles....
MapChangeStyle (Function)
Changes the style of the map displayed in the Map control. As of version 2025 Update 2, this function is no longer available. The management of map styles has been modified by Google. It is now necessary to define map styles in the Google platform and then use the MapIDGgl function to manage map styles....
Page in Session mode: Populating controls after a long process
In a web application, you may need to run long processes (for example, to update counters......