Dynamic updates when data changes.
Dynamic updates allow any part of the page to update itself based on change occurring on the server. To illustrate, begin with a simple element that display the number of assets in the system. <div>${asset_count}</div> In Python, the asset count would be retrieved as follows. asset_count = server.eval(“@COUNT(example/asset)”) When the Read more…