Create a form from a json-schema

This text field can contain stylized text and graphics. To cycle through all formatting options, use the keyboard shortcut Control + Shift + T to place focus on the toolbar and navigate between option heading names.

Common formatting keyboard shortcuts:

  • Control Shift B sets text to bold
  • Control Shift I sets text to italic
  • Control Shift U underlines text
  • Control Shift [ aligns text left
  • Control Shift | centers text
  • Control Shift ] aligns text right
  • Control Shift L adds an HTML link
  • To exit this text editor use the keyboard shortcut Control + Shift + ESC.
body

You have left the Rich Text Editor.

1var builder = new inputEx.JsonSchema.Builder({ 
2    'schemaIdentifierMap':base_schema_map, 
3  'defaultOptions':{ 
4     'showMsg':true 
5  } 
6 }); 
7var m = builder.schemaToInputEx(base_schema_map.community); 
8m.parentEl = 'container1'
9var f = inputEx(m); 
view plain | print | ?