Sean
Sean
Joined: Tue Jul 31 23:45:13 UTC 2018
Coding Dart/Flutter in my spare time
Latest Posts
-
Field Grouping Layout Element
This is a continuation of Peter's thread, which was apparently deleted with the purge of the spam posts. I am suggesting a new Layout Element that would use the HTML <fieldset> tag to group fields on…
-
Re: Database table not saved? NX script of a single if statement works and produces a view that look correct. But click off to another table and then return to the table and it is empty. How can this be?
You are declaring variable j each time your for-loop iterates. You declare a variable once and assign values to it as many times as you like. Try this...… -
A new concat() function
It looks like the only practical purpose for the concat() function is to convert an array to a string. You can’t use it to combine strings without inserting a comma into the new string and if you…