<?xml version="1.0" encoding="utf-8"?>
<Application>
	<AppTitle>neoJsonEditor Sample App</AppTitle>
	<AppShortName>neoJsonEdit</AppShortName>
	<Author>SinLios</Author>
	<Version>1.0</Version>
	<Description>neoJsonEditor Sample App</Description>
	<DesignDeviceName>Samsung Galaxy Tab 7</DesignDeviceName>
	<VariablesScanned>False</VariablesScanned>
	<PageWidth>1024</PageWidth>
	<PageHeight>600</PageHeight>
	<AutoSizeWidth>False</AutoSizeWidth>
	<AutoSizeHeight>False</AutoSizeHeight>
	<HideScrollbars>False</HideScrollbars>
	<ResponsiveSize>False</ResponsiveSize>
	<PublishPlatform>WebApp</PublishPlatform>
	<EmptyBuildFolder>False</EmptyBuildFolder>
	<LanguageCode>en</LanguageCode>
	<DisplayMode>standalone</DisplayMode>
	<ServiceWorker>Offline page</ServiceWorker>
	<ThemeColor>#000000</ThemeColor>
	<PwaScope>/</PwaScope>
	<MobileOSTypes>[AndroidOS,iOS,WindowsPhoneOS]</MobileOSTypes>
	<WindowState>normal</WindowState>
	<TitleBar>True</TitleBar>
	<Sizeable>True</Sizeable>
	<MaximizeBtn>False</MaximizeBtn>
	<MinimizeBtn>True</MinimizeBtn>
	<SystemMenu>True</SystemMenu>
	<ContextMenu>False</ContextMenu>
	<AlwaysOnTop>False</AlwaysOnTop>
	<ShowInTaskbar>True</ShowInTaskbar>
	<SingleInstance>False</SingleInstance>
	<ChromeKioskMode>False</ChromeKioskMode>
	<Components>
		<FunctionList name="Subroutines"/>
		<LibraryList name="Libraries"/>
		<PageList name="Main">
			<Components>
				<Page id="NewPage">
					<Components>
						<Container id="Container1">
							<left>240px</left>
							<top>10px</top>
							<width>775px</width>
							<height>570px</height>
							<style>background-color:#F0F0F0;padding-top:-20px;overflow-y:auto</style>
						</Container>
						<PushButton id="PushButton1">
							<left>15px</left>
							<top>10px</top>
							<width>210px</width>
							<height>70px</height>
							<caption>Sample 1</caption>
							<click>BeginJS
$App.mySchema = {
  &quot;type&quot;: &quot;object&quot;,
  &quot;properties&quot;: {
    &quot;name&quot;: {
      &quot;type&quot;: &quot;string&quot;
    },
    &quot;surname&quot;: {
      &quot;type&quot;: &quot;string&quot;
    },
    &quot;address&quot;: {
      &quot;type&quot;: &quot;string&quot;
    },
    &quot;phone&quot;: {
      &quot;type&quot;: &quot;string&quot;,
      &quot;pattern&quot;: &quot;^[0-9]{10}$&quot;
    },
    &quot;email&quot;: {
      &quot;type&quot;: &quot;string&quot;,
      &quot;format&quot;: &quot;email&quot;
    }
  },
  &quot;required&quot;: [&quot;name&quot;, &quot;surname&quot;, &quot;address&quot;, &quot;phone&quot;, &quot;email&quot;]
}

EndJS
neoJsonEditorInit &quot;Container1&quot; &quot;[mySchema]&quot;</click>
						</PushButton>
						<PushButton id="PushButton2">
							<left>15px</left>
							<top>90px</top>
							<width>210px</width>
							<height>70px</height>
							<caption>Sample 2</caption>
							<click>BeginJS
$App.mySchema = {
  &quot;type&quot;: &quot;array&quot;,
  &quot;items&quot;: {
    &quot;type&quot;: &quot;object&quot;,
    &quot;properties&quot;: {
      &quot;name&quot;: {
        &quot;type&quot;: &quot;string&quot;
      },
      &quot;surname&quot;: {
        &quot;type&quot;: &quot;string&quot;
      },
      &quot;address&quot;: {
        &quot;type&quot;: &quot;string&quot;
      },
      &quot;phone&quot;: {
        &quot;type&quot;: &quot;string&quot;,
        &quot;pattern&quot;: &quot;^[0-9]{10}$&quot;
      },
      &quot;email&quot;: {
        &quot;type&quot;: &quot;string&quot;,
        &quot;format&quot;: &quot;email&quot;
      },
      &quot;profilePicture&quot;: {
        &quot;type&quot;: &quot;string&quot;,
        &quot;format&quot;: &quot;url&quot;,
        &quot;media&quot;: {
              &quot;binaryEncoding&quot;: &quot;base64&quot;,
              &quot;type&quot;: &quot;img/png&quot;
            },
        &quot;options&quot;: {
              &quot;grid_columns&quot;: 6,
              &quot;multiple&quot;: false
        }
      }
    },
    &quot;required&quot;: [&quot;name&quot;, &quot;surname&quot;, &quot;address&quot;, &quot;phone&quot;, &quot;email&quot;, &quot;profilePicture&quot;]
  }
}

EndJS
neoJsonEditorInit &quot;Container1&quot; &quot;[mySchema]&quot;</click>
						</PushButton>
						<PushButton id="PushButton3">
							<left>15px</left>
							<top>170px</top>
							<width>210px</width>
							<height>70px</height>
							<caption>Get JSON Data</caption>
							<click>neoJsonEditorGetData &quot;Container1&quot; [myData]
ConsoleLog [myData]
jsAlert &quot;Data sent to the Console!&quot;</click>
						</PushButton>
					</Components>
				</Page>
			</Components>
		</PageList>
		<PageList name="Master">
			<Components>
				<Page id="MasterPage"/>
			</Components>
		</PageList>
		<PageList name="Dialog">
			<Components>
				<Page id="NewDialog">
					<Components>
						<DialogContainer id="DialogContainer1">
							<left>0px</left>
							<top>0px</top>
							<width>1024px</width>
							<height>600px</height>
							<close_button>False</close_button>
							<kind>custom</kind>
						</DialogContainer>
					</Components>
				</Page>
			</Components>
		</PageList>
	</Components>
</Application>
