JsonTree.js - Example - No Buttons

This is an example with the buttons disabled.

Download Now

v3.1.0 - 7th Sep 2024
Code
                                    function bindingOptions() {
                                        return {
                                            title: {
                                                showTreeControls: false,
                                                showCopyButton: false
                                            },
                                            data: {
                                                value1: true,
                                                value2: "This is a string",
                                                value3: new Date(),
                                                value4: 5,
                                                value7: null,
                                                value8: function() {
                                                    // Does nothing
                                                },
                                                value9: 3.1415926535,
                                                value10: 9007199254740991n,
                                                value11: Symbol( "id" ),
                                                value12: {},
                                                value13: undefined,
                                                value14: ( message ) => {
                                                    alert( message );
                                                },
                                                value15: "rgb(144, 238, 144)",
                                                value16: crypto.randomUUID(),
                                                value5: [
                                                    true,
                                                    "This is another string",
                                                    {
                                                        arrayValue1: true,
                                                        arrayValue2: 10
                                                    },
                                                    [
                                                        false,
                                                        true,
                                                        5,
                                                        10,
                                                        new Date()
                                                    ]
                                                ],
                                                value6: {
                                                    objectValue1: false,
                                                    objectValue2: "This is a new string",
                                                    objectValue3: 20
                                                }
                                            }
                                        }
                                    }