Odoo Help
Odoo is the world's easiest all-in-one management software. It includes hundreds of business apps:
CRM
|
e-Commerce
|
Accounting
|
Inventory
|
PoS
|
Project management
|
MRP
|
etc.
Using Ajax In OpenERP 7
I'm impressed by the way we can use jQuery inside OpenERP 7 but I want to know how to fetch data from a Python file using jQuery.
Here's the example content of the python.py's file:
print('testing')
and this is my jQuery code inside the XML :
$.get('blablabla/python.py',function(data){
alert(data);
})
I want to alert 'testing', but I can only get print('testing')
.
Is the alert possible? and if so, how? please help me, will greatly appreciate it..
About This Community
This platform is for beginners and experts willing to share their Odoo knowledge. It's not a forum to discuss ideas, but a knowledge base of questions and their answers.
RegisterOdoo Training Center
Access to our E-learning platform and experience all Odoo Apps through learning videos, exercises and Quizz.
Test it nowQuestion tools
Stats
Asked: 7/1/13, 2:51 PM |
Seen: 2531 times |
Last updated: 3/16/15, 8:10 AM |
Still no answer yet.. :(
+1 want also to know