Need to create a Vtiger 6.1 custom module - module

I need to create a Vtiger 6.1 custom module, that will be in relation with Organisation module, with list view on Organisation details page.
I couldn't find any documentation for such situation, all I found was a basic custom module structure with very limited and standalone functionality.
Can anyone suggest anything please.
Thank you in advance.

You can use Module Designer for making custom module.
Below link helps you to create custom module.
https://www.youtube.com/watch?v=PF3noyh7M-g

Related

Customize user interface for n8n workflows

Is it possible to customize the user interface for n8n workflows? if possible, can someone give an idea. Thank you.
You can find the source code for all the frontend code inside their repository: https://github.com/n8n-io/n8n/tree/master/packages/editor-ui
The editor-ui folder inside packages is what you are looking for.
The app is written using Vue.js ans it's very easy to understand. You can see the n8n-theme*.scss files in the mentioned folder that could be a good starting point.
Feel free to add / share ideas on what you're looking to do and I'll try to help if possible.
Also they have a very active community that can be found here: https://community.n8n.io/

How to test odoo modules

I developed an odoo module, I want to test it, I alreay read this topic testing odoo module, but there is no enought details about this.
Actually you are trying to test your module but the link you provide is for creating python test cases. I think this might help you.

Can modules(extensions) be modified in Yii?

I am new to Yii framework, and just came across extensions provided by Yii. But I am confused whether we can modify the extension which are provided by Yii.
For example I am using Yii-user module, Now if I want to change the registration form provided by this module, So can I directly change it(by changing the files) ?
If - Yes: Will there be any problem while upgrading Yii version ?
If - No: How can be change it(May be from our custom file) ?
Yii-user module is provided by the community not an official yii extension, yes you can modified by replace it with another view file, if you mean a class the best way to modifie it is by extend it and override the methods you want to change.
Hope it helps
Yii is designed to build custom solutions, you should feel free to modify anything that is part of the generated 'site' including extensions and everything in the protected folder. However, conforming to the psyche and standards of coding used in Yii is certainly a good practice to benefit fully from the framework and you can only get into a habit of doing that after developing and re-developing with Yii over a period of time.
Upgrading Yii version updates files in the framework directory only so its safe to make changes in your site part.
You cannot upgrade that individual extension if you modify them directly(as now you have your own custom version). extending an extension as suggested by Cherif is a good option if you want to keep upgrade-ability for the extensions (protected/extensions).

Reference or example using SkinId with TMS Intraweb Components

There is a property in the TIWDBAdvWebGrid component called SkinId. I wasn't able to find documentation for it, and wonder if the TMS Intraweb components are skinnable, and if so, how its done. Any link to documentation or brief explanation would be much appreciated.
Visit CGDevTools they have a jQuery components suite to use with Intraweb all with theme support for professional skin user interface.
I have learned that skins are not supported with Intraweb at this time.

ECM Application using Alfresco

I am new to Alfresco Development. I had learn Alfresco Implementation and Usage little bit. Now i want to develop a application using Alfresco, ie, Knowledge Management Application with customized UI with my defined features only. No need to be with full features of Alfresco. Where should i start? I heard that there is two ways to develop Alfresco project, by Customizing Alfresco Explorer for my own need, or Create a new application on extending Alfresco features by API.I could't be clear for developing ECM Project using Alfresco.Can anyone pls guide me to do my wish? I am in end of days for my project.
Thank in advance,
with regards,
Feroz
I'd suggest you first spend some time learning about how to create a simple content model and how to modify the UI to display your stuff. One good tutorial can be found on www.ecmarchitect.com, look for custom content model example.