poc form SDK (extends to form)

This commit is contained in:
Benjamin Dalsass
2023-08-24 14:29:31 +02:00
parent 245c1d0be5
commit 20ae64706a
3325 changed files with 1500 additions and 547966 deletions

View File

@@ -0,0 +1,25 @@
/**
* Example of jquery widget.
*
*/
$.widget( "itop.text_widget",
{
// default options
options:
{
},
// the constructor
_create: function()
{
editor = CKEDITOR.replace(this.element.attr('id'), {
language: 'fr',
uiColor: '#9ec5fe88',
toolbarStartupExpanded: true
});
}
});