HtmlPanel
The HtmlPanel control can be used to embed full HTML documents within a Wisej.NET application.
info
For a full list of properties, methods and events see the API documentation.
Features
Custom HTML
Any HTML file or code can be directly linked to the HtmlPanel control using the Html or HtmlSource property.
//For the Html property, put the entire HTML code as a string
htmlPanel1.Html = "<b>Example Text Here</b>";
//For the HtmlSource property, provide a string contining the path to a HTML file
htmlPanel1.HtmlSource = "MyHtmlFile.html";
Clicks inside the HtmlPanel can be handled with the ElementClick event.
danger
It's not recommended to use HTML containing an iframe within the HtmlPanel. The HtmlPanel cannot handle clicks on anything inside the iframe. If your HTML contains an iframe, use the IFramePanel instead.
-058928eccfea9ce0a0949dc50a095bee.png)
Advanced
JavaScript Widget
| Item | Description |
|---|---|
| Class name | "wisej.web.ScrollableHtmlPanel" |
| Theme appearance | "widget", see Themes. |
| Child components | "pane" is the container for the HTML content. See JavaScript. |
| Source Code | https://github.com/iceteagroup/wisej-js |