🌐
GitHub
github.com › MaaxGr › ang-jsoneditor
GitHub - MaaxGr/ang-jsoneditor: Jsoneditor for Angular 11, 12, 13 and 14
// For Angular 11 + 12 import { NgJsonEditorModule } from '@maaxgr/ang-jsoneditor' // Starting Angular 13 import { AngJsoneditorModule } from '@maaxgr/ang-jsoneditor' @NgModule({ declarations: [ AppComponent ], imports: [ ...., // For Angular 11 + 12 NgJsonEditorModule, // Starting Angular 13 AngJsoneditorModule, ], providers: [], bootstrap: [AppComponent] }) export class AppModule { } ... import {Component} from '@angular/core'; import {JsonEditorOptions} from "@maaxgr/ang-jsoneditor"; @Component({ selector: 'app-root', template: '<json-editor [options]="editorOptions" [data]="initialData" (c
Starred by 13 users
Forked by 18 users
Languages   TypeScript 83.6% | JavaScript 9.0% | HTML 7.0% | SCSS 0.4% | TypeScript 83.6% | JavaScript 9.0% | HTML 7.0% | SCSS 0.4%
🌐
GitHub
github.com › hardikpatel043 › ang-jsoneditor-13
GitHub - hardikpatel043/ang-jsoneditor-13
Angular Json Editor (wrapper for jsoneditor).
Author   hardikpatel043
🌐
Rodikh
rodikh.github.io › angular-json-editor
Angular-json-editor
JSON Editor takes a JSON Schema and uses it to generate an HTML form.
🌐
npm
npmjs.com › package › ang-jsoneditor
ang-jsoneditor - npm
Angular Json Editor (wrapper for jsoneditor).
      » npm install ang-jsoneditor
    
Published   Apr 09, 2025
Version   4.0.2
Author   Mario Mol
🌐
GitHub
github.com › carlos-morcillo › ngx-json-builder
GitHub - carlos-morcillo/ngx-json-builder: Jsoneditor for Angular 11, 12, 13, 14 and 16
// For Angular 11 + 12 import { NgJsonEditorModule } from 'ngx-json-builder' // Starting Angular 13 import { NgxJsonBuilderModule } from 'ngx-json-builder' @NgModule({ declarations: [ AppComponent ], imports: [ ...., // For Angular 11 + 12 NgJsonEditorModule, // Starting Angular 13 NgxJsonBuilderModule, ], providers: [], bootstrap: [AppComponent] }) export class AppModule { } ... import {Component} from '@angular/core'; import {JsonEditorOptions} from "ngx-json-builder"; @Component({ selector: 'app-root', template: '<json-editor [options]="editorOptions" [data]="initialData" (change)="showJson
Author   carlos-morcillo
🌐
GitHub
github.com › mariohmol › ang-jsoneditor
GitHub - mariohmol/ang-jsoneditor: Angular Jsoneditor that works with angular 4 to angular 15
import { Component, ViewChild } from '@angular/core'; import { JsonEditorComponent, JsonEditorOptions } from 'ang-jsoneditor'; @Component({ selector: 'app-root', template: '<json-editor [options]="editorOptions" [data]="data"></json-editor>', styleUrls: ['./app.component.css'], imports: [JsonEditorComponent] }) export class AppComponent { public editorOptions: JsonEditorOptions; public data: any; // optional @ViewChild(JsonEditorComponent, { static: false }) editor: JsonEditorComponent; constructor() { this.editorOptions = new JsonEditorOptions() this.editorOptions.modes = ['code', 'text', 'tr
Starred by 162 users
Forked by 101 users
Languages   TypeScript 91.3% | HTML 8.1% | TypeScript 91.3% | HTML 8.1%
🌐
GitHub
github.com › dimakorotkov › ngx-json-editor
GitHub - dimakorotkov/ngx-json-editor: Angular library for json-editor
Ngx Json Editor (wrapper for json-editor). It takes a JSON Schema and uses it to generate an HTML form. Tested under Angular 13.
Author   dimakorotkov
🌐
GitHub
github.com › thdang1009 › ang-jsoneditor
GitHub - thdang1009/ang-jsoneditor: Jsoneditor for Angular 14
This is a fork of mariohmol's ang-jsoneditor with support for Angular 11, 12 and 13.
Author   thdang1009
🌐
npm
npmjs.com › package › @maaxgr › ang-jsoneditor
@maaxgr/ang-jsoneditor - npm
This is a fork of mariohmol's ang-jsoneditor with support for Angular 11, 12, 13 and 14.
      » npm install @maaxgr/ang-jsoneditor
    
Published   Nov 25, 2022
Version   14.0.0
Author   Max Großmann
Find elsewhere
🌐
StackBlitz
stackblitz.com › edit › angular-json-editor
Angular Json Editor - StackBlitz
Starter project for Angular apps that exports to the Angular CLI
🌐
GitHub
github.com › bastiendonjon › angular-jsoneditor
GitHub - bastiendonjon/angular-jsoneditor: Jsoneditor module for Angular
The editor can be used as a component in your own web application. The library can be loaded as CommonJS module, AMD module, or as a regular javascript file. Supported browsers: Chrome, Firefox, Safari, Opera, Internet Explorer 9+. ... Add ngJsonEditor to your app’s module dependencies. ... $scope.json = { "products": [{ "_id": 1, "label": "product1" }, { "_id": 2, "label": "product2" }] }; --optional-- $scope.jsoneditorOptions = { "name": 'Products' };
Starred by 6 users
Forked by 4 users
🌐
GitHub
github.com › angular-tools › ng-jsoneditor
GitHub - angular-tools/ng-jsoneditor: Angular version of the insanely cool jsoneditor
http://jsfiddle.net/angulartools/sd3at5ek/ myAppModule.controller('MyController', [ '$scope', function($scope) { $scope.obj = {data: json, options: { mode: 'tree' }}; $scope.btnClick = function() { $scope.obj.options.mode = 'code'; //should switch you to code view } }); Any changes to Jsoneditor or ng-model are reflected instantly. Instead of editor.get() now you can simply access your ng-model, or $scope.obj.data in this case, to get or set values.
Starred by 83 users
Forked by 66 users
Languages   JavaScript 100.0% | JavaScript 100.0%
🌐
UNPKG
unpkg.com › browse › ang-jsoneditor@1.5.6 › README.md
ang-jsoneditor
Angular Json Editor (wrapper for jsoneditor). View/Edit Json file with formatting. github.com/mariohmol/ang-jsoneditor · mariohmol/ang-jsoneditor · 71 lines (52 loc) • 1.8 kB · Markdown · View Raw · 1 · 2 · 3 · 4 · 5 · 6 · 7 · 8 · 9 · 10 · 11 · 12 · 13 ·
🌐
Krispo
krispo.github.io › json-tree
JSON Editor
JSON-treev0.1.5 · Editable AngularJS directive · {{ meta.title }} · {{ meta.caption }} · Please enable JavaScript to view the comments powered by Disqus · comments powered by Disqus · &copy 2014 Konstantin Skipor, MIT License · Tweet · Issues · Releases · zip · tar.gz
🌐
npm
npmjs.com › package › angular-jsoneditor
angular-jsoneditor - npm
Angular wrapper for jsoneditor. Latest version: 0.0.2, last published: 9 years ago. Start using angular-jsoneditor in your project by running `npm i angular-jsoneditor`. There are 1 other projects in the npm registry using angular-jsoneditor.
      » npm install angular-jsoneditor
    
Published   Mar 24, 2017
Version   0.0.2
Author   Paul Biester
🌐
Npm
npm.io › package › @maaxgr › ang-jsoneditor
@maaxgr/ang-jsoneditor NPM | npm.io
This is a fork of mariohmol's ang-jsoneditor with support for Angular 11, 12, 13 and 14.
🌐
Npm
npm.io › search › keyword:ang-jsoneditor
Ang-jsoneditor | npm.io
Angular Json Editor (wrapper for jsoneditor). View/Edit Json file with formatting. angularjsoneditorang-jsoneditorng-jsoneditorangular1.0.0 • Published 7 years ago · ## About this repository This is a fork of mariohmol's [ang-jsoneditor](https://github.com/mariohmol/ang-jsoneditor) with support for Angular 11, 12 and 13...