We are thinking about providing something like:
media:///servoy_blobloader?servername=&tablename=&dataprovider=&rowid1=
In Servoy 2.1, seems to us the most easy way to do this…
david:
Are we moving away from a forms based development environment here?
Very dynamic UI’s cannot be easily done with forms… so we understand the need for this, and it 2 way, the form can generate a dynamic UI part with form method callbacks when a link is clicked.
Do I understand correctly that in the future it will also be possible to create input forms with HTML (with buttons, comboboxes etc) and feed back the variables from the HTML back to Servoy methods?
yep, using at allready, but my problem lies in passing variables back… For example, in the HTML field, I can create a combobox with an x amount of values. The user can select a value from the combobox, but I cannot get that value back into Servoy
We are thinking about providing something like:
media:///servoy_blobloader?servername=&tablename=&dataprovider=&rowid1=
I am just trying to build a value list with picture and name coming from a table. I am trying to build a html table for every record and now come accross the issue of how to get hold of my image.
you have to specify the parameters for servername ,tablename and dataprovider name.
example:
media:///servoy_blobloader?servername=crm_server&tablename=employees&dataprovider=headfoto&rowid1=10244
What you are trying todo with the media field I don’t understand you are loading the url text in a media field? (which only support byte array’s).
It seems to me you are trying to use the media field in the wrong way
What I want to do is a value list which shows icon and text in the popup. I have done those before with html by hand. Each entry is a table with one row and three columns: icon, spacer, text.
Now I want to use the new functionality to do a value list like that based on a table. I have a table with countries and their flags. So I thought I create a calculation (stored) in that table that throws me the html code for one entry and I could then build a value list on that column.