↧
I have never successfully gotten a listbox to populate from waRowSource. NO matter what it shows blank. I can populate it other ways, but not from waRowSource. In my exaple I ended up using rowsourcetype of fields from a table.
If you send me a listbox example that works I will try and see why it does not work for me.
FoxInCloud.MethExec('requery','reports_scx-vmclst1','requery',someVal);
What are expected and obtained result?
Please post any screen shot that can illustrate that
Note : in
FoxInCloud.MethExec('requery','reports_scx-vmclst1','requery',someVal);
I have been updating fields sometimes, like date popups, via javascript. To get VFP to recognize changes, I use:
item.simulate'blur')
Works great. But now I want to go the other way, sort of. I called a requery from javascript like this. It worked fine to update the VFP data values:
FoxInCloud.MethExec('requery','reports_scx-vmclst1','requery',someVal);
But after that VFP shows the updated data from the requery. So my question is how to I tell FiC to update the listbox items from what is in VFP?