<?xml version="1.0" encoding="utf-8"?>
<Application>
	<AppTitle>Untitled Application</AppTitle>
	<AppShortName>MyApp</AppShortName>
	<Author>Author name</Author>
	<Version>1.0</Version>
	<Variables>[idnumber],[mydata]</Variables>
	<VariablesScanned>True</VariablesScanned>
	<PageWidth>1020</PageWidth>
	<PageHeight>640</PageHeight>
	<AutoSizeWidth>False</AutoSizeWidth>
	<AutoSizeHeight>False</AutoSizeHeight>
	<HideScrollbars>False</HideScrollbars>
	<ResponsiveSize>False</ResponsiveSize>
	<PublishPlatform>WebApp</PublishPlatform>
	<EmptyBuildFolder>False</EmptyBuildFolder>
	<AppIcon>C:\Users\User\Documents\VisualNeoWeb\Libraries\img\default-icon.png</AppIcon>
	<CustomCSS>/* Popup container */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: &quot;&quot;;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}
&lt;h2&gt;Popup&lt;/h2&gt;&lt;div class=&quot;popup&quot; onclick=&quot;myFunction()&quot;&gt;Click me to toggle the popup!  &lt;span class=&quot;popuptext&quot; id=&quot;myPopup&quot;&gt;A Simple Popup!&lt;/span&gt;&lt;/div&gt;</CustomCSS>
	<LanguageCode>fa</LanguageCode>
	<LanguageRTL>True</LanguageRTL>
	<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>
	<startup>... add any project start-up commands below

.First we need to create an empty array to store the data
CreateEmptyArray [mydata1]

.Then we populate the array with data
.double click on any command to bring up the code wizard and better understand what&apos;s happening.

.id field has a unique value per row
.Loop 0 9 [idnumber]
  .neoTableSetData [mydata1] [idnumber] &quot;id&quot; [idnumber]
.EndLoop

.first row
neoTableSetData [mydata1] 0 &quot;phone&quot; &quot;64&quot;
neoTableSetData [mydata1] 0 &quot;name&quot; &quot;فرهاد&quot;
neoTableSetData [mydata1] 0 &quot;surname&quot; &quot;عابدینی&quot;
neoTableSetData [mydata1] 0 &quot;id&quot; 0

.second row
neoTableSetData [mydata1] 1 &quot;phone&quot; &quot;56&quot;
neoTableSetData [mydata1] 1 &quot;name&quot; &quot;Tom&quot;
neoTableSetData [mydata1] 1 &quot;surname&quot; &quot;Cruise&quot;
neoTableSetData [mydata1] 1 &quot;id&quot; 1

.third row
neoTableSetData [mydata1] 2 &quot;phone&quot; &quot;61&quot;
neoTableSetData [mydata1] 2 &quot;name&quot; &quot;مانی&quot;
neoTableSetData [mydata1] 2 &quot;surname&quot; &quot;جوادیان&quot;
neoTableSetData [mydata1] 2 &quot;id&quot; 2

.fourth row
neoTableSetData [mydata1] 3 &quot;phone&quot; &quot;43&quot;
neoTableSetData [mydata1] 3 &quot;name&quot; &quot;ساسان&quot;
neoTableSetData [mydata1] 3 &quot;surname&quot; &quot;گرامیان&quot;
neoTableSetData [mydata1] 3 &quot;id&quot; 3

.more rows...
neoTableSetData [mydata1] 4 &quot;phone&quot; &quot;69&quot;
neoTableSetData [mydata1] 4 &quot;name&quot; &quot;Meryl&quot;
neoTableSetData [mydata1] 4 &quot;surname&quot; &quot;Streep&quot;
neoTableSetData [mydata1] 4 &quot;id&quot; 4

neoTableSetData [mydata1] 5 &quot;phone&quot; &quot;66&quot;
neoTableSetData [mydata1] 5 &quot;name&quot; &quot;Liam&quot;
neoTableSetData [mydata1] 5 &quot;surname&quot; &quot;Neeson&quot;
neoTableSetData [mydata1] 5 &quot;id&quot; 5

neoTableSetData [mydata1] 6 &quot;phone&quot; &quot;43&quot;
neoTableSetData [mydata1] 6 &quot;name&quot; &quot;Angelina&quot;
neoTableSetData [mydata1] 6 &quot;surname&quot; &quot;Jolie&quot;
neoTableSetData [mydata1] 6 &quot;id&quot; 6

neoTableSetData [mydata1] 7 &quot;phone&quot; &quot;72&quot;
neoTableSetData [mydata1] 7 &quot;name&quot; &quot;Susan&quot;
neoTableSetData [mydata1] 7 &quot;surname&quot; &quot;Sarandon&quot;
neoTableSetData [mydata1] 7 &quot;id&quot; 7

neoTableSetData [mydata1] 8 &quot;phone&quot; &quot;999&quot;
neoTableSetData [mydata1] 8 &quot;name&quot; &quot;Little&quot;
neoTableSetData [mydata1] 8 &quot;surname&quot; &quot;McJohn&quot;
neoTableSetData [mydata1] 8 &quot;id&quot; 8

neoTableSetData [mydata1] 9 &quot;phone&quot; &quot;59&quot;
neoTableSetData [mydata1] 9 &quot;name&quot; &quot;Magic&quot;
neoTableSetData [mydata1] 9 &quot;surname&quot; &quot;Johnson&quot;
neoTableSetData [mydata1] 9 &quot;id&quot; 9

... Reset any previous column definitions
neoTableResetColumns &quot;Container2&quot;

... etup columns; IMPORTANT: column numbers MUST start at 1
.neoTableGetSelectedId &quot;Container2&quot; [op]
neoTableSetMultiSelectColumn &quot;Container2&quot; 1 &quot;phone&quot;
neoTableGetSelectedId &quot;Container2&quot; [op]

neoTableSetColumn &quot;Container2&quot; 2 &quot;phone&quot; &quot;phone&quot; &quot;&quot; false false false &quot;&quot;
neoTableSetColumn &quot;Container2&quot; 3 &quot;name&quot; &quot;First Name&quot; &quot;&quot; false false false &quot;&quot;
neoTableSetColumn &quot;Container2&quot; 4 &quot;surname&quot; &quot;Last Name&quot; &quot;&quot; false false false &quot;&quot;
neoTableSetColumn &quot;Container2&quot; 5 &quot;id&quot; &quot;id&quot; &quot;&quot; false false false &quot;&quot;
neoTableSetData [mydata1] [idnumber] &quot;phone&quot; [idnumber]
... define user permissions
neoTableInitTable &quot;Container2&quot; &quot;fa-IR&quot; 0 &quot;Table&quot; false false false false true &quot;cilck&quot;

... load Data
neoTableLoadData &quot;Container2&quot; [mydata1]
neoTableSetData [mydata1] [idnumber] &quot;phone&quot; [idnumber]
............................................................................</startup>
	<Components>
		<FunctionList name="Subroutines">
			<Components>
				<Function name="ok">
					<Code>.Array to store the data
CreateEmptyArray [tableData]
SetVar [tableData] [data]

.Number of records
ArrayLen [tableData] [totalRecords]
SetVar [totalRecords] [totalRecords]-1

.Array to store combo items
CreateEmptyArray [comboItems]


.Add items to the combo items array
Loop 0 [totalRecords] [n]
   ArrayAddItem [comboItems] [tableData([n]).klass]
EndLoop</Code>
					<Params>[data]|STRING|data from database</Params>
				</Function>
				<Function name="cilck">
					<Code>If [neoTableEvent] == &quot;check&quot;


endif</Code>
				</Function>
			</Components>
		</FunctionList>
		<LibraryList name="Libraries"/>
		<PageList name="Main">
			<Components>
				<Page id="NewPage">
					<Components>
						<Container id="Container2">
							<left>433px</left>
							<top>62px</top>
							<width>504px</width>
							<height>473px</height>
							<style>background-color:#fff;border-style:solid;border-width:1px;overflow-x:auto;overflow-y:auto</style>
							<click>.............................
If [neoTableEvent] == &quot;check&quot;

..........................
Loop 0 10 [idnumber]
.................................

neoTableGetSelectedIds &quot;Container2&quot; [oops]

..........
EndLoop
......................
else
...../////////////////////////////.....................

Loop 0 10 [idnumber]
.................................
neoTableGetSelectedIds &quot;Container2&quot; [oops]
EndLoop
endif</click>
						</Container>
						<TextArea id="TextArea1">
							<left>122px</left>
							<top>93px</top>
							<width>200px</width>
							<height>435px</height>
							<variable>[oops]</variable>
						</TextArea>
						<Headline id="Headline3">
							<left>120px</left>
							<top>62px</top>
							<width>203px</width>
							<height>37px</height>
							<style>font-size:10pt;text-align:center</style>
							<text>MultiSelect phone</text>
						</Headline>
					</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>480px</width>
							<height>320px</height>
							<close_button>False</close_button>
							<kind>custom</kind>
						</DialogContainer>
					</Components>
				</Page>
			</Components>
		</PageList>
	</Components>
</Application>
