EVOLUTION-MANAGER
Edit File: callModule.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>R: Invoke a Shiny module</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="R.css" /> </head><body> <table width="100%" summary="page for callModule {shiny}"><tr><td>callModule {shiny}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Invoke a Shiny module</h2> <h3>Description</h3> <p>Note: As of Shiny 1.5.0, we recommend using <code><a href="moduleServer.html">moduleServer()</a></code> instead of <code><a href="callModule.html">callModule()</a></code>, because the syntax is a little easier to understand, and modules created with <code>moduleServer</code> can be tested with <code><a href="testServer.html">testServer()</a></code>. </p> <h3>Usage</h3> <pre> callModule(module, id, ..., session = getDefaultReactiveDomain()) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>module</code></td> <td> <p>A Shiny module server function</p> </td></tr> <tr valign="top"><td><code>id</code></td> <td> <p>An ID string that corresponds with the ID used to call the module's UI function</p> </td></tr> <tr valign="top"><td><code>...</code></td> <td> <p>Additional parameters to pass to module server function</p> </td></tr> <tr valign="top"><td><code>session</code></td> <td> <p>Session from which to make a child scope (the default should almost always be used)</p> </td></tr> </table> <h3>Value</h3> <p>The return value, if any, from executing the module server function </p> <hr /><div style="text-align: center;">[Package <em>shiny</em> version 1.5.0 <a href="00Index.html">Index</a>]</div> </body></html>