Difference between revisions of "Developing a Custom WebViewWidget"

From Lianjapedia
Jump to: navigation, search
(Created page with "Under development")
 
Line 1: Line 1:
 
Under development
 
Under development
 +
 +
WebViewWidgets can be developed in LianjaScript (.rsp file), Python (.pysp file) or JavaScript (.jssp file).
 +
 +
They are essentially HTML files that contain blocks of code enclosed in <% … %> tags. This code when executed generates HTML that replaces the code being exited in the output file.
 +
 +
Let’s look at a simple LianjaScript example.
 +
 +
<code lang=“recital”>
 +
// todo
 +
</code>

Revision as of 03:59, 16 October 2023

Under development

WebViewWidgets can be developed in LianjaScript (.rsp file), Python (.pysp file) or JavaScript (.jssp file).

They are essentially HTML files that contain blocks of code enclosed in <% … %> tags. This code when executed generates HTML that replaces the code being exited in the output file.

Let’s look at a simple LianjaScript example.

// todo