Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
41 views

Currently, I'm trying to use jsonforms to create different forms for my website, and I'm using custom buttons and input fields (using custom renderers) to render the form, currently I'm interested in ...
juztcode's user avatar
  • 1,433
1 vote
3 answers
96 views

Not all icons from vuetify are rendering in my jsonForms component I'm creating Vue component, that render jsonForms with vuetifyRenderers from '@jsonforms/vue-vuetify' and this part is ok. But ...
Andrey Voiteshik's user avatar
0 votes
0 answers
18 views

I'm using json forms to generate forms from a json description. I'm trying to have cooperative filling (multiple users can work on one form at a time, and see changes in real time). const store = ...
Nitram Nekonečný's user avatar
0 votes
1 answer
81 views

I want to create a vue single page app that uses jsonforms. I want to avoid using a bundler. My code is as follows <!DOCTYPE html> <html lang="en"> <head> <meta ...
johnmerm's user avatar
  • 726
4 votes
1 answer
189 views

I'm using a form with JSON Form and I'm having trouble performing validations. The problem is that the input fields turn red even before the user types anything. I want the error that the field is ...
vbernal's user avatar
  • 715
0 votes
1 answer
518 views

I am using React and JSON Forms to build a form with an input that has a minimum length restriction and an email format. I am unable to generate a custom error message. The docs say to use ajv-errors,...
Kiran Anand's user avatar
0 votes
1 answer
43 views

I need a custom widget because depending on the value of a different property linkType I want to render a different input type ( select, textarea ) I try to store the state from the form locally so ...
Hawkzey's user avatar
  • 1,213
-1 votes
1 answer
51 views

The CypherQuery I used is {“statements” : [{ “statement” : “MATCH (n:ns0__Meas) RETURN n LIMIT 25” }]}. I've been reading the return String via CURLOPT_WRITEDATA, but the format of the returned json ...
user20297975's user avatar
1 vote
1 answer
406 views

I've created a custom renderer with its tester: import { rankWith, scopeEndsWith } from '@jsonforms/core' export default rankWith( 3, //increase rank as needed scopeEndsWith('uiSchema') ) and it ...
Cereal Killer's user avatar
-1 votes
1 answer
462 views

I am creating a custom renderer to display a JSON form as an overview of the data saved in other json forms. Most fields have to be displayed just with a single title and value from the database. Some ...
Federica Tomola's user avatar
0 votes
1 answer
110 views

I'm using JSON Forms in my project. Problem For "number"-typed field I want to type in values like 1.05, but when I type "1." the field shows an error, and then, when I type "...
TheSaGe's user avatar
  • 191
0 votes
1 answer
713 views

I am using the JsonForms React Component to dynamically generate an HTML form in my web-application. The framework I use does all of the view rendering on the server side, so to include this component ...
Bioman's user avatar
  • 41
0 votes
1 answer
309 views

We are using JsonForms with React and MUI. There is a specific renderer (CEP renderer equivalent to ZIP code) which, onBlur, performs an API call and it should update the values of other fields from ...
Thiago Dias's user avatar
0 votes
1 answer
68 views

Please check below code, this works $('form').jsonForm({ 'schema': { 'message': { 'type': 'string', 'title': 'Message' }, 'author': { 'type': 'object', 'title': 'Author', 'properties': { 'name': ...
Johny Bravo's user avatar
2 votes
1 answer
704 views

This is my TSX code: import React, { FC, ReactElement } from "react"; //jsonforms import import { useState } from "react"; import { materialRenderers, materialCells, } from "@jsonforms/...
ernesto casco velazquez's user avatar
0 votes
2 answers
200 views

I am following an example from here to create a custom renderer for JsonForms using Vue: https://jsonforms.io/api/vue/vue/index.html However, when I include this sample in my .vue file within the ...
Droxx's user avatar
  • 197
2 votes
1 answer
1k views

So I'm starting out with Vue JSONForms and I'm trying to create a bare-bones custom text renderer. I know there JSONForms has the vue-vanilla package, but I want to understand what are the basics ...
Adam Silva's user avatar
  • 1,039
2 votes
1 answer
2k views

Is there any way I can use json form schema with custom renderer (using json schema to render react native UI elements) in react native. I have seen couple of react native specific package which are ...
Praful Kadam's user avatar
1 vote
1 answer
639 views

I am currently working on a project, which involves using JSON Forms I have a problem regarding validation. The reason is that there are multiple values in inputs and some of them should not exceed or ...
Ookami's user avatar
  • 39
-2 votes
2 answers
163 views

I want to run a ready python project in virtual environment. When I run the project I face no error. And when I write this in the terminal "py manage.py runserver" , I can see just a label ...
aida jbigloo's user avatar
0 votes
1 answer
82 views

I need to extract only the content of the operations of the following json: {"entries":[{"description":"Text transform on 101 cells in column Column 2: value.toLowercase()&...
frankh07's user avatar
1 vote
0 answers
486 views

I'm trying to get all of the keys from this JSON schema using react.js. The end goal is to create a system that will automatically create a dynamic form based on this schema that will change during ...
iRazed's user avatar
  • 11
1 vote
1 answer
149 views

I need help, I'm new to Jolt. There is a json file: { "Date": "2021-01-01", "Status": "New", "Agreements": [ { "ID_agreement"...
Вика Вольферц's user avatar
3 votes
0 answers
1k views

I have a specific use case in which we use several JSON schemas to create forms using @jsonforms/core in combination with @jsonforms/angular (jsonforms.io). The validation happens as recommended with ...
Eds Keizer's user avatar
2 votes
1 answer
670 views

I’m using JsonForms for my form creation in React. I’m working on creating a test r and was wondering why it needs a rank? import { rankWith, scopeEndsWith } from '@jsonforms/core'; export default ...
Dev's user avatar
  • 21
0 votes
1 answer
81 views

I'm following a modified JSON Forms tutorial but runs into problems when adding my own code in order to post the form data to a REST endpoint. The form is loading fine and I'm able to fill it in with ...
Jonas's user avatar
  • 119
0 votes
1 answer
187 views

Is there any way to know what properties/variables are available in html template in angular? I tried {{ this | json }} appears error. I use json forms (https://jsonforms.io/) and I have this ...
Корвин Кори's user avatar
2 votes
1 answer
642 views

I can get dependencies to work with non-nested values (top-level in the schema), but I would like for a dependency to be dependent on a property which is nested within an object definition. const ...
nkalpak's user avatar
  • 23
0 votes
0 answers
389 views

I am currently testing JSON Forms on my schema (as is, without a UI definition), and I am running into the following problem: I can generate lists of options with oneOf (as shown in this_works below), ...
Andreas Walker's user avatar
1 vote
1 answer
304 views

I'm trying to use jsonform in my ASP.NET Core application. It is working quite well. I can't understand why I have this error Uncaught Error: The JSONForm contains an element whose type is unknown: &...
Enrico's user avatar
  • 6,872
4 votes
2 answers
4k views

TLDR: I need to customize the default error messages provided by JSON form. Eg if field is required then JSON form give error like is a required property, I want it to return error message text like ...
Jawad's user avatar
  • 133
0 votes
0 answers
397 views

I'm trying to use https://www.npmjs.com/package/@jsonforms/angular-material by running a sample application from https://github.com/eclipsesource/jsonforms-angular-seed.git The sample application ...
sancho21's user avatar
  • 3,653
0 votes
1 answer
349 views

I am creating a dynamic form (using JSON format) in Django, the form needs to save multiple images using Django Storage and save the reference to the file in the JSON field. This is what I have right ...
RobertPro's user avatar
  • 288
3 votes
0 answers
956 views

i am using json-forms with react and i want to introduce condition where category is hidden and it will show depending on object inside an array. here is pseudo schema var schema = { "...
dash's user avatar
  • 129
2 votes
1 answer
2k views

I am trying to write up a JSONSchema to be used with react-jsonschema-form, but am having trouble getting the dependencies working and in the correct order. "properties":{ "condition": { ...
user2884618's user avatar
0 votes
1 answer
142 views

I would like to extract only the data present in a Json to JsonForm using Java. Which framework can I use to this operation?
OneNoOne's user avatar
  • 617
1 vote
1 answer
2k views

I need to turn a full string into Json format, the challenge is that within the payload there is a nested field which requires be read as Json likewise. My java code look like: First I read the ...
Andres Urrego Angel's user avatar