FileMaker-JSON-Functions icon indicating copy to clipboard operation
FileMaker-JSON-Functions copied to clipboard

A set of recursive FileMaker custom functions that can create and read JSON.

Results 16 FileMaker-JSON-Functions issues
Sort by recently updated
recently updated
newest added

This doesn't actually happen, though; it just returns an empty string. An empty string is probably enough since a json null value will be returned as "json:null" (might want to...

bug

``` jsonO ( jsonOp ( "ts" ; Get ( CurrentTimestamp ) ) ) // = { "ts":9/24/2015 7:29:01 PM } ``` it should return: ``` { "ts":"9/24/2015 7:29:01 PM" }...

bug

jsonO returned the following: jsonO ( jsonOp ( "chip_number" ; "3.56E+14") ) //{ "chip_number":3.56E+14 } A user imported microchip numbers in from Excel to a text field. Some of the...

**This is meant more as a discussion opener than a, issue...** _What would the PROS and CONS of passing FileMaker scripts parameters in JSON format be?_ #### PROS - ~~cleaner...

It should either return an empty string, or an error (I'm not sure which, yet). It seems like it's trying to process it and reaching FM's recursion limits.

bug

There is a temporary method in place for this, and a comment in the code, along with an idea for an alternative method. https://github.com/dansmith65/FileMaker-JSON-Functions/blob/26ab18216e13a357c428697ae89d360906a6926f/Functions/z_jsonParseSupport1.fmfn#L689

bug
cache

If the index is higher than array size + 1, should it pad the array with null values like javascript does?

- insert before other values - negative number? - "unshift" (like the json method) ? - insert between values - decimal: 2.5 would insert after 2? - insert at end...

enhancement

I don't think I'll needs this until I implement jpath.

cache