Documentaion needed #759
Replies: 7 comments
-
What about this? |
Beta Was this translation helpful? Give feedback.
-
I want to create offline application, but the examples and the things I tried all say online like that flowrl.com example of that usage page. I will appreciate if you could explain more. Thank you.
Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10
…________________________________
From: Roman ***@***.***>
Sent: Wednesday, August 11, 2021 9:23:00 AM
To: r0x0r/pywebview ***@***.***>
Cc: FreeCreativ ***@***.***>; Author ***@***.***>
Subject: Re: [r0x0r/pywebview] Documentaion needed (#759)
What about this?
https://pywebview.flowrl.com/guide/usage.html
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub<#759 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AMW2IKZDBLZYX2IY3QCNFWDT4IXOJANCNFSM5B3CNJGQ>.
|
Beta Was this translation helpful? Give feedback.
-
Take a look at the todos app in the examples folder.
|
Beta Was this translation helpful? Give feedback.
-
Thank you very much, hope you don’t mind if I consult you at roadblocks.
Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10
From: ***@***.***>
Sent: Friday, August 13, 2021 6:27 PM
To: ***@***.***>
Cc: ***@***.***>; ***@***.***>
Subject: Re: [r0x0r/pywebview] Documentaion needed (#759)
Take a look at the todos app in the examples folder.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub<#759 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AMW2IK6K6KZNPP4Q3TLTZULT4VIYVANCNFSM5B3CNJGQ>.
|
Beta Was this translation helpful? Give feedback.
-
I still can't figure out, the offline window setup or must you be online
Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10
From: ***@***.***>
Sent: Friday, August 13, 2021 6:27 PM
To: ***@***.***>
Cc: ***@***.***>; ***@***.***>
Subject: Re: [r0x0r/pywebview] Documentaion needed (#759)
Take a look at the todos app in the examples folder.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub<#759 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AMW2IK6K6KZNPP4Q3TLTZULT4VIYVANCNFSM5B3CNJGQ>.
|
Beta Was this translation helpful? Give feedback.
-
Thank you very much took a while but I have figured it out and progressed from there. Thanks a lot. I seriously believe this would fix python UI challenge
Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10
From: ***@***.***>
Sent: Friday, August 13, 2021 6:27 PM
To: ***@***.***>
Cc: ***@***.***>; ***@***.***>
Subject: Re: [r0x0r/pywebview] Documentaion needed (#759)
Take a look at the todos app in the examples folder.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub<#759 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AMW2IK6K6KZNPP4Q3TLTZULT4VIYVANCNFSM5B3CNJGQ>.
|
Beta Was this translation helpful? Give feedback.
-
function app_lists() {
pywebview.api.list_maker.then(function (lists) {
document.getElementById('tyu').innerHTML = typeof (lists); or without the typeof function
})
Then this
def list_maker(self):
les = JsonHandler()
lists = les.json_read()
# lists = les.js_json(li)
return lists
I am trying to read data from a json file and return the data to the lists variable in JavaScript but it is not showing me anything, I have test run the python function over again but no change .
Although this worked
function generate() {
let app = get_data('appname');
let first = get_data('firstname');
let middle = get_data('middlename');
let last = get_data('surname');
clearall();
pywebview.api.generate(app, first, middle, last).then(function (pass_phrase) {
let passy = document.getElementById('password')
passy.value = pass_phrase;
})
}
and in this scenario I only returned a single variable. Please I would appreciate your help. Thank you
Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10
|
Beta Was this translation helpful? Give feedback.
-
Please add good documentation or manual for beginners.
Beta Was this translation helpful? Give feedback.
All reactions