Code Monkey home page Code Monkey logo

Comments (4)

josdejong avatar josdejong commented on August 24, 2024

The editor exposes a method .expand([callback: (path: Path) => boolean]) which can be used to expand/collapse part of or all of the document. Does that solve your issue?

from svelte-jsoneditor.

nrot avatar nrot commented on August 24, 2024

How i can use this in svelte ?

<script>
  // @ts-nocheck

  import { JSONEditor } from "svelte-jsoneditor";

  export let index;
  export let timestampt;
  export let data;

  let content = {
    text: undefined,
    json: data,
  };

  let mainMenuBar = false;
  let navigationBar = false;
  let readOnly = true;
  let mode = "code";

  function expand(c) {
    console.log(c)
    return true;
  }
</script>

<div class="d-flex w-100 gap-3">
  <div>{timestampt}</div>
  <JSONEditor bind:content bind:mainMenuBar bind:readOnly bind:mode on:expand={(c)=>expand(c)}/>
</div>

<style>
</style>

from svelte-jsoneditor.

josdejong avatar josdejong commented on August 24, 2024

@nrot you can create a reference to the editor and call the method there, like:

<script>
  // @ts-nocheck

  import { JSONEditor } from "svelte-jsoneditor";

  export let index;
  export let timestampt;
  export let data;

  let refJsonEditor;

  let content = {
    text: undefined,
    json: data,
  };

  let mainMenuBar = false;
  let navigationBar = false;
  let readOnly = true;
  let mode = "code";

  function expandAll() {
    refJsonEditor.expand(() => true)
  }
</script>

<div class="d-flex w-100 gap-3">
  <div>{timestampt}</div>
  <JSONEditor 
    bind:this={refJsonEditor} 
    bind:content 
    bind:mainMenuBar 
    bind:readOnly bind:mode
   />
</div>

<style>
</style>

from svelte-jsoneditor.

nrot avatar nrot commented on August 24, 2024

Thanks is very useful. I could not this find on net.

from svelte-jsoneditor.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.