We have several apps running on appeon workspace with no problem.
Scenerio:
We created a desktop application which uses a Richtextedit control and saves the contents to a database table whose column is a blob.
Works fine in saving and retrieving on the desktop app.
However we tried to implement a RichTextEdit control in one of our web apps and retrieving the blob data and placing it in the RichTextEdit shows nothing? The data we saved was only text.
Does deploying the RichTextEdit to mobile/web work?
-----
Heres a code snippet of our retrieval that works great in a desktop app but not web.
rte_1.clearall()
//
selectblob blobdata into :myblob
from bikes_blob_data
where blobid = :ll_id_exists
using sqlca;
//
string ls_rtf_text
ls_rtf_text = string(myblob, EncodingUTF8!)
rte_1.Pastertf(ls_rtf_text)
-------------
TIA Mike