Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Abel-HenryLapassat committed Dec 21, 2024
2 parents 77aa516 + fd3c84a commit 5fd848e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,8 @@ with an override of the `render` class function, e.g.:
```javascript
Simplicite.UI.ExternalObject.MyExtObj = class extends Simplicite.UI.ExternalObject {
async render(params, data) {
$(this.ctn || '#myExtObjDiv').html('Hello world!');
this.ctn.find('.mycls').html('Hello world!');
// or $('#myid').html('Hello world!');
}
}
```
Expand Down

0 comments on commit 5fd848e

Please sign in to comment.