I am a long time DW user, and have been using Web Assist extensions. I have looked at DMX Zone extensions in the past and really liked the look of them. But a dealbreaker in the past was the inability to manually edit SQL queries.
Is this now possible using Wappler? If it is, I would seriously consider switching to Wappler.
There is absolutely no need to edit manually SQL in Wappler as its visual Query Builder can handle almost anything in a much more easier and visual way.
Ok, I get you - so just as a date is stored as YYYY-MM-DD in the database, on the client side dates can be displayed in different formats, the value of a field, eg AY_rank, can be displayed as something else.
In this example, AY refers to one judge out of several, who ‘rank’ properties to score them. So the code above would be repeated several times for different judges.
Giving several scores, to give a total score also, with SQL like currently like this:
, noms.AY_score + noms.CG_score + noms.GR_score as judges_score
, scrs.AverageScore + noms.AY_score + noms.CG_score + noms.GR_score as total_score
So its a bit more involved than displaying a different value based on the stored value, but involves storing it and using it to create further calculated values on the client side in the SQL.
Thanks George - I guess it will just be a bit of a learning curve for me, but I suspect actually a lot more intuitive once I get my bearings with it all!