widget creation

0
Hi all, I created "helo world" widget as discibed in documentation here https://world.mendix.com/pages/releaseview.action?pageId=11439212#Widgets-QuickStart- but I can't see my widget in Modeller 4.4 Here is my widget structure http://screencast.com/t/Fbk92LkXpzN and here is groupdocs.xml code <?xml version="1.0" encoding="utf-8" ?> <package xmlns="http://www.mendix.com/package/1.0/"> <clientModule name="groupdocs" version="1.0" xmlns="http://www.mendix.com/clientModule/1.0/"> <widgetFiles> <widgetFile path="groupdocsmodule/GroupDocsWidget/GroupDocsWidget.xml"/> </widgetFiles> <files> <file path="groupdocsmodule/GroupDocsWidget/"/> </files> </clientModule> </package> GroupDocsWidget.xml <?xml version="1.0" encoding="utf-8" ?> <widget id="groupdocsmodule.GroupDocsWidget.GroupDocsWidget" needsEntityContext="false" xmlns="http://www.mendix.com/widget/1.0/"> <name>GroupDocs</name> <description>Work with accaunt and document embeding</description> <properties> <property key="string" type="string"> <caption>String to use</caption> <category>Common</category> <description>The string to use.</description> </property> </properties> </widget> GroupDocsWidget.js dojo.provide("groupdocsmodule.GroupDocsWidget.GroupDocsWidget"); mendix.widget.declare("groupdocsmodule.GroupDocsWidget.GroupDocsWidget",{ addons : null, inputargs : { string : '' }, postCreate : function(){ this.sayHello(); this.actRendered(); }, sayHello : function(){ this.domNode.innerHTML = this.string; }, uninitialize : function(){ } });
asked
0 answers