Can you give me a hand? I could't create vtiger 5.1 module, can't find any examples.
Can you help me?
You need to use the vtlib api to create a new module.
Check this link for vtlib documentation.
http://wiki.vtiger.com/index.php/Vtiger_CRM_5_Developer_Guide/VTLIB
follow this how to create entity module
https://wiki.vtiger.com/index.php/CreatingEntityModule
by just
1) unzip Payslip-5.1.0-package.zip
2) zip up the "manifest.xml" and "modules" folder containing Payslip
3) import it to vtiger via vtiger's ModuleManager
Then everything works.
Related
I am brand new to Genexus and I come over some basic tasks. Now I try to access and test external API-s. I have import API-s over Import OpenAPI process which build API folder and Model folder. I want to test simpe API-s ( list Merchants ) but I cant find the right way to do it. Can somebody help me with that?
TIA
Stane
After importing YAML a folder named API is created containing procedures (Genexus objects) that call each service imported.
So, you need to call the procedure that in turn calls the REST service.
Something like:
Merchanlist(Parameters)
Check this document for further information: https://wiki.genexus.com/commwiki/servlet/wiki?31864,OpenAPI%20import%20tool#Sample+consumer+code
< Can anyone give a example how to create a project using api's
in form.io
Go through the link Form.IO API for better understanding
I was just creating a form in prestashop.So, I need to store the data from ront in end in the database. Please anyone tell me how to implement Models in module or for module. As I was enable to find any related article regarding this. Please help.
Just look at one of the default modules provided by prestashop. Take an example that creates a form in front. Then look at how the view of that specific model was created and how was data treated via controller.
examples: blockserach, blockmanufacturer..
I am building a custom module for Sugar v.6.5.16. This module works with data of other modules so my module does not need database table, I do not want beens, not importable, I actually do not want anything. I have my own controller, own classes, etc and end of the story. It works. Now I want to create an installable package and NO, I DO NOT WANT TO MAKE A PACKAGE IN STUDIO. I have become quite frustrated because everyone suggests to create the package in studio where it is obbligatory to select a type(basic, company, etc) which will add data structure, bean, db table - which is really handsome but I do not want all that stuff. I actually made a test package with studio and I removed all bean info from manifest file and killed vardefs content and I managed to install it but then my module does not get listed in the "module=Administration&action=ConfigureTabs".
So, the question is what do i put where to be able to see my module listed?
Old post, but I think this page is really worth reading: http://alanstorm.com/sugar_crm_hello_world.
Excellent example of minimal module coding without studio and at the same time a very nice introduction to Sugar logic.
i Do agree with Rupesh shingh Create custom module fully in sugarcrm is not a good approach until and unless u understand the complete flow !
for understanding the flow you can go through this :-
1)understand controller,views and how it we can use it
Hello module
And try to complete 2-3 chapter of this book definitive guide by John Mertic
2)create costume module from studio and first try to do customization with edit and detail view
Flow how customize edit and details view
3)After this try to customize list view based on condition and try to customize additional details popup add where clause default listview try to create you own list view Add custom button in list view to overwrite the list view search
4)go through chapter 10 of definitive guide by John Mertic which shows how to create custom module with out creating package in studio ( manually ) !
I hope this will help !!!
please check link
http://techs.studyhorror.com/sugarcrm-manually-create-custom-modules-i-95
Create custom module in sugarcrm is not a good approach so avoid this process, as per understanding coding and logic for sugarcrm development practice is good to create module from custom code.
I have been researching for various type of documentation options for our products. I thought it would be cool to have Ext JS 4 Docs type of look&feel rather than Twiki.
But I am having tough time to understand the current docs page in Ext JS 4.0.7. Each and every directory has README.js & README.md. If I am not wrong, I have to create my custom documentation in README.md, but I am failing to understand how that would be converted into README.js.
Could someone let me know how to .md file can be converted into .js?
They are using a self made tool, which is called JSDuck
I guess you need to run it over your .md files and it will generate the .js files for you.
JsDuck is the way to go. I'm using it to build some custom documentation.
To get the guides:
just create a json file. I usually call it guides.json and write out the structure. It is well defined in the link below.
Create a folder in the same location as the guides file and in it:
create a folder for each entry in the json. (each entry has a name field and this should be the name of the folder)
Create the file readme.md
Add an icon to it. It should be names icon-lg.png
When using jsduck from the command line, add the following to the arguments:
--guides=[the path to your guides.json file]
More information can be found here:
https://github.com/senchalabs/jsduck/wiki/Advanced-Usage (go to the guides section)
Also, to get more information on the commandline parameters, use the command
jsduck-3.2.1 --help=full
Hope this works for you.