├── .gitignore
├── CommonPictures
├── ChevronRight.xml
├── ChevronRight
│ └── Ext
│ │ ├── Picture.xml
│ │ └── Picture
│ │ └── Picture.png
├── People1.xml
├── People1
│ └── Ext
│ │ ├── Picture.xml
│ │ └── Picture
│ │ └── Picture.jpg
├── People2.xml
├── People2
│ └── Ext
│ │ ├── Picture.xml
│ │ └── Picture
│ │ └── Picture.jpg
├── People3.xml
└── People3
│ └── Ext
│ ├── Picture.xml
│ └── Picture
│ └── Picture.jpg
├── Configuration.xml
├── DataProcessors
├── Accordion.xml
├── Accordion
│ └── Forms
│ │ ├── Form.xml
│ │ └── Form
│ │ └── Ext
│ │ └── Form.xml
├── ActionSheet.xml
├── ActionSheet
│ └── Forms
│ │ ├── Form.xml
│ │ └── Form
│ │ └── Ext
│ │ ├── Form.xml
│ │ └── Form
│ │ └── Module.bsl
├── Buttons.xml
├── Buttons
│ └── Forms
│ │ ├── Form.xml
│ │ └── Form
│ │ └── Ext
│ │ └── Form.xml
├── Checkbox.xml
├── Checkbox
│ └── Forms
│ │ ├── Form.xml
│ │ └── Form
│ │ └── Ext
│ │ ├── Form.xml
│ │ └── Form
│ │ └── Module.bsl
├── ContentBlock.xml
├── ContentBlock
│ └── Forms
│ │ ├── Form.xml
│ │ └── Form
│ │ └── Ext
│ │ └── Form.xml
├── Gauge.xml
├── Gauge
│ └── Forms
│ │ ├── Form.xml
│ │ └── Form
│ │ └── Ext
│ │ ├── Form.xml
│ │ └── Form
│ │ └── Module.bsl
├── Inputs.xml
├── Inputs
│ └── Forms
│ │ ├── Form.xml
│ │ └── Form
│ │ └── Ext
│ │ ├── Form.xml
│ │ └── Form
│ │ └── Module.bsl
├── ListView.xml
├── ListView
│ └── Forms
│ │ ├── Form.xml
│ │ └── Form
│ │ └── Ext
│ │ ├── Form.xml
│ │ └── Form
│ │ └── Module.bsl
├── Sortable.xml
├── Sortable
│ └── Forms
│ │ ├── Form.xml
│ │ └── Form
│ │ └── Ext
│ │ ├── Form.xml
│ │ └── Form
│ │ └── Module.bsl
├── Swiper.xml
├── Swiper
│ └── Forms
│ │ ├── Form.xml
│ │ └── Form
│ │ └── Ext
│ │ └── Form.xml
├── TabbarIcons.xml
├── TabbarIcons
│ └── Forms
│ │ ├── Form.xml
│ │ └── Form
│ │ └── Ext
│ │ └── Form.xml
├── Treeview.xml
└── Treeview
│ └── Forms
│ ├── Form.xml
│ └── Form
│ └── Ext
│ ├── Form.xml
│ └── Form
│ └── Module.bsl
├── LICENSE
├── Languages
└── English.xml
├── README.md
├── StyleItems
├── BlockBackColor.xml
├── BlockFont.xml
├── ButtonFont.xml
├── FieldTitleFont.xml
├── FillBackColor.xml
├── FillTextColor.xml
├── OutlineBackColor.xml
├── OutlineBorderColor.xml
├── OutlineTextColor.xml
├── TonalBackColor.xml
├── TonalTextColor.xml
└── UsualTextColor.xml
└── docs
└── framework7.svg
/.gitignore:
--------------------------------------------------------------------------------
1 | ConfigDumpInfo.xml
2 |
--------------------------------------------------------------------------------
/CommonPictures/ChevronRight.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | ChevronRight
6 |
7 |
8 | en
9 | Chevron right
10 |
11 |
12 |
13 | false
14 | false
15 |
16 |
17 |
--------------------------------------------------------------------------------
/CommonPictures/ChevronRight/Ext/Picture.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Picture.png
5 | false
6 |
7 |
--------------------------------------------------------------------------------
/CommonPictures/ChevronRight/Ext/Picture/Picture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zeegin/MobileExplorer/a7ebfc418712fccf204f990e791eb906162b75b3/CommonPictures/ChevronRight/Ext/Picture/Picture.png
--------------------------------------------------------------------------------
/CommonPictures/People1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | People1
6 |
7 |
8 | en
9 | People1
10 |
11 |
12 |
13 | false
14 | false
15 |
16 |
17 |
--------------------------------------------------------------------------------
/CommonPictures/People1/Ext/Picture.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Picture.jpg
5 | false
6 |
7 |
--------------------------------------------------------------------------------
/CommonPictures/People1/Ext/Picture/Picture.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zeegin/MobileExplorer/a7ebfc418712fccf204f990e791eb906162b75b3/CommonPictures/People1/Ext/Picture/Picture.jpg
--------------------------------------------------------------------------------
/CommonPictures/People2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | People2
6 |
7 |
8 | en
9 | People2
10 |
11 |
12 |
13 | false
14 | false
15 |
16 |
17 |
--------------------------------------------------------------------------------
/CommonPictures/People2/Ext/Picture.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Picture.jpg
5 | false
6 |
7 |
--------------------------------------------------------------------------------
/CommonPictures/People2/Ext/Picture/Picture.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zeegin/MobileExplorer/a7ebfc418712fccf204f990e791eb906162b75b3/CommonPictures/People2/Ext/Picture/Picture.jpg
--------------------------------------------------------------------------------
/CommonPictures/People3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | People3
6 |
7 |
8 | en
9 | People3
10 |
11 |
12 |
13 | false
14 | false
15 |
16 |
17 |
--------------------------------------------------------------------------------
/CommonPictures/People3/Ext/Picture.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Picture.jpg
5 | false
6 |
7 |
--------------------------------------------------------------------------------
/CommonPictures/People3/Ext/Picture/Picture.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zeegin/MobileExplorer/a7ebfc418712fccf204f990e791eb906162b75b3/CommonPictures/People3/Ext/Picture/Picture.jpg
--------------------------------------------------------------------------------
/Configuration.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | 9cd510cd-abfc-11d4-9434-004095e12fc7
7 | ed13c2de-7eea-4345-a554-fc0b42f36b6f
8 |
9 |
10 | 9fcd25a0-4822-11d4-9414-008048da11f9
11 | ae570e10-91b8-4a28-9387-8783bf181583
12 |
13 |
14 | e3687481-0a87-462c-a166-9f34594f9bba
15 | 58d177c8-5be7-4354-8327-698e43b60482
16 |
17 |
18 | 9de14907-ec23-4a07-96f0-85521cb6b53b
19 | f71b7281-ed28-4868-b5cf-88c7d9188b9f
20 |
21 |
22 | 51f2d5d8-ea4d-4064-8892-82951750031e
23 | 93c1d55e-60f8-48d3-ad67-72efde469aa6
24 |
25 |
26 | e68182ea-4237-4383-967f-90c1e3370bc7
27 | 1577c44c-c15c-43bd-ab94-fafff9a8a3aa
28 |
29 |
30 | fb282519-d103-4dd3-bc12-cb271d631dfc
31 | 478766ce-c46c-4eab-9a75-3a4e3bb89f0f
32 |
33 |
34 |
35 | MobileExplorer
36 |
37 |
38 | en
39 | Mobile explorer
40 |
41 |
42 |
43 |
44 | Version8_5_1
45 | ManagedApplication
46 |
47 | MobilePlatformApplication
48 |
49 | English
50 |
51 | Ingvar Vilkman
52 | 1.0.1
53 |
54 | false
55 | false
56 | false
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 | Biometrics
87 | true
88 |
89 |
90 | Location
91 | false
92 |
93 |
94 | BackgroundLocation
95 | false
96 |
97 |
98 | BluetoothPrinters
99 | false
100 |
101 |
102 | WiFiPrinters
103 | false
104 |
105 |
106 | Contacts
107 | false
108 |
109 |
110 | Calendars
111 | false
112 |
113 |
114 | PushNotifications
115 | false
116 |
117 |
118 | LocalNotifications
119 | false
120 |
121 |
122 | InAppPurchases
123 | false
124 |
125 |
126 | PersonalComputerFileExchange
127 | false
128 |
129 |
130 | Ads
131 | false
132 |
133 |
134 | NumberDialing
135 | false
136 |
137 |
138 | CallProcessing
139 | false
140 |
141 |
142 | CallLog
143 | false
144 |
145 |
146 | AutoSendSMS
147 | false
148 |
149 |
150 | ReceiveSMS
151 | false
152 |
153 |
154 | SMSLog
155 | false
156 |
157 |
158 | Camera
159 | false
160 |
161 |
162 | Microphone
163 | false
164 |
165 |
166 | MusicLibrary
167 | false
168 |
169 |
170 | PictureAndVideoLibraries
171 | false
172 |
173 |
174 | AudioPlaybackAndVibration
175 | false
176 |
177 |
178 | BackgroundAudioPlaybackAndVibration
179 | false
180 |
181 |
182 | InstallPackages
183 | false
184 |
185 |
186 | OSBackup
187 | true
188 |
189 |
190 | ApplicationUsageStatistics
191 | false
192 |
193 |
194 | BarcodeScanning
195 | false
196 |
197 |
198 | BackgroundAudioRecording
199 | false
200 |
201 |
202 | AllFilesAccess
203 | false
204 |
205 |
206 | Videoconferences
207 | false
208 |
209 |
210 | NFC
211 | false
212 |
213 |
214 | DocumentScanning
215 | false
216 |
217 |
218 | SpeechToText
219 | false
220 |
221 |
222 | Geofences
223 | false
224 |
225 |
226 | IncomingShareRequests
227 | false
228 |
229 |
230 | AllIncomingShareRequestsTypesProcessing
231 | false
232 |
233 |
234 | TextToSpeech
235 | false
236 |
237 |
238 |
239 |
240 |
241 | NavigationLeft
242 | Auto
243 | Normal
244 | OpenDataInDialogs
245 |
246 |
247 |
248 |
249 | Language.English
250 |
251 |
252 |
253 |
254 |
255 | Managed
256 | NotAutoFree
257 | DontUse
258 | DontUse
259 | Version8_5
260 | DontUse
261 | DontUse
262 | Version8_5_1
263 |
264 |
265 |
266 | English
267 | UsualTextColor
268 | TonalTextColor
269 | TonalBackColor
270 | FillTextColor
271 | FillBackColor
272 | ButtonFont
273 | BlockFont
274 | BlockBackColor
275 | OutlineTextColor
276 | OutlineBackColor
277 | OutlineBorderColor
278 | FieldTitleFont
279 | ChevronRight
280 | People1
281 | People2
282 | People3
283 | Accordion
284 | ContentBlock
285 | Buttons
286 | Checkbox
287 | Gauge
288 | Inputs
289 | ListView
290 | TabbarIcons
291 | Swiper
292 | Sortable
293 | Treeview
294 | ActionSheet
295 |
296 |
297 |
--------------------------------------------------------------------------------
/DataProcessors/Accordion.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | e8a0440d-cf09-4e3c-9c88-c22b4689d6ef
7 | 2fe97b8d-11c9-4a50-9c13-2c8485c56e54
8 |
9 |
10 | dbedce23-d41f-4916-a79e-511a77032266
11 | 9f3f013d-05c8-4313-806e-49e408f1201c
12 |
13 |
14 |
15 | Accordion
16 |
17 |
18 | en
19 | Accordion
20 |
21 |
22 |
23 | true
24 | DataProcessor.Accordion.Form.Form
25 |
26 | false
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/DataProcessors/Accordion/Forms/Form.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/DataProcessors/Accordion/Forms/Form/Ext/Form.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/DataProcessors/ActionSheet.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | 0be17700-a7d1-47ae-9698-b95dad20db02
7 | 672a5d99-815c-4b30-a0cd-e29dee2ebfd9
8 |
9 |
10 | 874ffc1a-cfaf-47a3-8083-a904cf77dcb4
11 | a248cd92-7af8-4717-873f-e4169fd7b092
12 |
13 |
14 |
15 | ActionSheet
16 |
17 |
18 | en
19 | Action sheet
20 |
21 |
22 |
23 | true
24 | DataProcessor.ActionSheet.Form.Form
25 |
26 | false
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/DataProcessors/ActionSheet/Forms/Form.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/DataProcessors/ActionSheet/Forms/Form/Ext/Form.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/DataProcessors/ActionSheet/Forms/Form/Ext/Form/Module.bsl:
--------------------------------------------------------------------------------
1 |
2 | &AtClient
3 | Procedure OneGroup(Command)
4 |
5 | List = New ValueList;
6 | List.Add("Do something");
7 | List.Add("Button 1");
8 | List.Add("Button 2");
9 | List.Add("Cancel");
10 |
11 | List.ChooseItem("Title");
12 |
13 | EndProcedure
14 |
15 | &AtClient
16 | Procedure TwoGroups(Command)
17 |
18 |
19 |
20 | EndProcedure
21 |
--------------------------------------------------------------------------------
/DataProcessors/Buttons.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | 016c9cfe-1685-461b-b3d8-20f4c1e6054b
7 | 3975c8f4-18f1-4e0f-9cf7-12d869e005e1
8 |
9 |
10 | 7f4af03c-7e65-46a7-8137-85d72ad3a3ee
11 | 71cf52e6-0ee7-47f1-ad27-6940acc6460d
12 |
13 |
14 |
15 | Buttons
16 |
17 |
18 | en
19 | Buttons
20 |
21 |
22 |
23 | true
24 | DataProcessor.Buttons.Form.Form
25 |
26 | false
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/DataProcessors/Buttons/Forms/Form.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/DataProcessors/Buttons/Forms/Form/Ext/Form.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/DataProcessors/Checkbox.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | 4b24eacd-f732-4674-9cbb-cb638e40e85a
7 | 9464e060-ba54-433e-8dd9-764201533ddd
8 |
9 |
10 | 72ac3139-a79b-4899-aa07-2678d61e0ebb
11 | 76806a0d-3e5e-4c28-bee9-a1290487c80b
12 |
13 |
14 |
15 | Checkbox
16 |
17 |
18 | en
19 | Checkbox
20 |
21 |
22 |
23 | true
24 | DataProcessor.Checkbox.Form.Form
25 |
26 | false
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/DataProcessors/Checkbox/Forms/Form.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/DataProcessors/Checkbox/Forms/Form/Ext/Form.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/DataProcessors/Checkbox/Forms/Form/Ext/Form/Module.bsl:
--------------------------------------------------------------------------------
1 |
2 | &AtServer
3 | Procedure OnCreateAtServer(Cancel, StandardProcessing)
4 |
5 | Row = Data1.Add();
6 | Row.Title = "Link 1";
7 |
8 | Row = Data1.Add();
9 | Row.Title = "Link 2";
10 |
11 | Row = Data1.Add();
12 | Row.Title = "Link 3";
13 |
14 | EndProcedure
15 |
--------------------------------------------------------------------------------
/DataProcessors/ContentBlock.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | 9d3b5c81-f7d8-4f10-8c44-86839bcfd3a0
7 | 295b7822-c80b-4b31-a131-8e740df76566
8 |
9 |
10 | e88135ce-04b0-4ba5-85a4-f169131c5322
11 | df2bca01-3a6f-4b14-b995-650c44e3b3b1
12 |
13 |
14 |
15 | ContentBlock
16 |
17 |
18 | en
19 | Content block
20 |
21 |
22 |
23 | true
24 | DataProcessor.ContentBlock.Form.Form
25 |
26 | false
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/DataProcessors/ContentBlock/Forms/Form.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/DataProcessors/ContentBlock/Forms/Form/Ext/Form.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/DataProcessors/Gauge.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | 0acd13e5-335f-4f5b-a7d8-9eba5d77c713
7 | e9773ea9-3242-4d2d-8628-681c79b7c0d3
8 |
9 |
10 | f5f0548e-8470-43af-9614-7ca7cef90df0
11 | 38961290-b0b5-4062-9533-4847dc49199c
12 |
13 |
14 |
15 | Gauge
16 |
17 |
18 | en
19 | Gauge
20 |
21 |
22 |
23 | true
24 | DataProcessor.Gauge.Form.Form
25 |
26 | false
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/DataProcessors/Gauge/Forms/Form.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/DataProcessors/Gauge/Forms/Form/Ext/Form.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/DataProcessors/Gauge/Forms/Form/Ext/Form/Module.bsl:
--------------------------------------------------------------------------------
1 |
2 | &AtServer
3 | Procedure OnCreateAtServer(Cancel, StandardProcessing)
4 |
5 | СоздатьДиаграмму(Chart1, Metadata.StyleItems.UsualTextColor.Value);
6 |
7 | ЗаполнитьДиаграмму(Chart1, 100, 25);
8 |
9 | EndProcedure
10 |
11 | &AtClient
12 | Procedure PercentOnChange(Item)
13 |
14 | PercentOnChangeAtServer();
15 |
16 | EndProcedure
17 |
18 | &AtServer
19 | Procedure PercentOnChangeAtServer()
20 |
21 | ЗаполнитьДиаграмму(Chart1, 100, Percent);
22 |
23 | EndProcedure
24 |
25 | &НаСервере
26 | Процедура СоздатьДиаграмму(Диаграмма, Цвет)
27 |
28 | Диаграмма.Обновление = Ложь;
29 |
30 | Диаграмма.Окантовка = Ложь;
31 | Диаграмма.ТипДиаграммы = ТипДиаграммы.Кольцевая;
32 | Диаграмма.ОбластьЛегенды.Расположение = РасположениеЛегендыДиаграммы.Нет;
33 | Диаграмма.ОбластьЗаголовка.Расположение = РасположениеОбластиЗаголовкаДиаграммы.УказываетсяРасположение;
34 | Диаграмма.ОбластьЗаголовка.ПрозрачныйФон = Истина;
35 | Диаграмма.ОбластьЗаголовка.Верх = 0.25;
36 | Диаграмма.ОбластьЗаголовка.Низ = 0.75;
37 | Диаграмма.ОбластьЗаголовка.Лево = 0.25;
38 | Диаграмма.ОбластьЗаголовка.Право = 0.75;
39 |
40 | Диаграмма.ОбластьЗаголовка.ЦветТекста = Цвет;
41 | Диаграмма.ОбластьЗаголовка.Шрифт = Новый Шрифт( , 24, Истина);
42 |
43 | Диаграмма.ФорматЗначенийВПодписях = "ЧФ = 'Ч '";
44 |
45 | Диаграмма.Точки.Добавить();
46 | Диаграмма.Точки[0].Текст = "";
47 |
48 | Диаграмма.Серии.Добавить("Используется");
49 | Диаграмма.Серии[0].Цвет = Цвет;
50 |
51 | Диаграмма.Серии.Добавить("Доступно");
52 | Диаграмма.Серии[1].Цвет = Новый Цвет(238, 238, 238);
53 |
54 | Диаграмма.Обновление = Истина;
55 |
56 | КонецПроцедуры
57 |
58 | &НаСервере
59 | Процедура ЗаполнитьДиаграмму(Диаграмма, Всего, Использовано)
60 |
61 | Диаграмма.Обновление = Ложь;
62 |
63 | Диаграмма.ОбластьЗаголовка.Текст = Строка(Окр(Использовано / Всего * 100)) + "%";
64 |
65 | Диаграмма.УстановитьЗначение(0, 0, Использовано);
66 | Диаграмма.УстановитьЗначение(0, 1, Всего - Использовано);
67 |
68 | Диаграмма.Обновление = Истина;
69 |
70 | КонецПроцедуры
71 |
--------------------------------------------------------------------------------
/DataProcessors/Inputs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | 1cec2c9d-53d1-4823-9c5f-339cf3e37bd2
7 | e5477fe3-03e6-4373-ba13-b8d464bc606d
8 |
9 |
10 | 3ef0201a-d97c-46cd-8c59-7e2290b941e8
11 | a6dd5fa7-c5e1-42f3-8806-fa9d35910233
12 |
13 |
14 |
15 | Inputs
16 |
17 |
18 | en
19 | Inputs
20 |
21 |
22 |
23 | true
24 | DataProcessor.Inputs.Form.Form
25 |
26 | false
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/DataProcessors/Inputs/Forms/Form.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/DataProcessors/Inputs/Forms/Form/Ext/Form/Module.bsl:
--------------------------------------------------------------------------------
1 |
2 | &AtServer
3 | Procedure OnCreateAtServer(Cancel, StandardProcessing)
4 |
5 | Gender = "Male";
6 | Birthday = CurrentDate();
7 | DateTime = CurrentDate();
8 |
9 | EndProcedure
10 |
11 | &AtClient
12 | Procedure Name1OnChange(Item)
13 |
14 | Validate();
15 |
16 | EndProcedure
17 |
18 | &AtServer
19 | Procedure Validate()
20 |
21 | If IsBlankString(Name) Then
22 |
23 | Items.Name1.ExtendedToolTip.Title = "Please fill out this field.";
24 | Items.Name1.ExtendedToolTip.TextColor = StyleColors.NegativeTextColor;
25 |
26 | Else
27 |
28 | Items.Name1.ExtendedToolTip.Title = "Default validation";
29 | Items.Name1.ExtendedToolTip.TextColor = New Color();
30 | EndIf;
31 |
32 | EndProcedure
33 |
34 |
35 |
--------------------------------------------------------------------------------
/DataProcessors/ListView.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | 00c60402-5194-4bf0-a20b-911c105e9167
7 | fbcdcb37-c485-46e7-bbcb-ca97a3b37c50
8 |
9 |
10 | d02cf2c2-624d-4e6b-aa31-fbca312468b5
11 | 00ada875-c956-4773-8926-52dd91d1b260
12 |
13 |
14 |
15 | ListView
16 |
17 |
18 | en
19 | List view
20 |
21 |
22 |
23 | true
24 | DataProcessor.ListView.Form.Form
25 |
26 | false
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/DataProcessors/ListView/Forms/Form.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/DataProcessors/ListView/Forms/Form/Ext/Form/Module.bsl:
--------------------------------------------------------------------------------
1 |
2 | &AtServer
3 | Procedure OnCreateAtServer(Cancel, StandardProcessing)
4 |
5 | Row = Data1.Add();
6 | Row.Title = "Link 1";
7 |
8 | Row = Data1.Add();
9 | Row.Title = "Link 2";
10 |
11 | Row = Data1.Add();
12 | Row.Title = "Link 3";
13 |
14 | //
15 |
16 | Row = Data2.Add();
17 | Row.Icon = PictureLib.ActiveUsers;
18 | Row.Title = "Ivan Petrov";
19 | Row.After = "CEO";
20 |
21 | Row = Data2.Add();
22 | Row.Icon = PictureLib.ActiveUsers;
23 | Row.Title = "John Doe";
24 | Row.After = "5";
25 |
26 | Row = Data2.Add();
27 | Row.Icon = PictureLib.ActiveUsers;
28 | Row.Title = "Jenna Smith";
29 |
30 | //
31 | Row = Data3.Add();
32 | Row.Icon = PictureLib.ActiveUsers;
33 | Row.Title = "Ivan Petrov";
34 | Row.After = "CEO";
35 |
36 | Row = Data3.Add();
37 | Row.Icon = PictureLib.ActiveUsers;
38 | Row.Title = "John Doe";
39 | Row.After = "Cleaner";
40 |
41 | Row = Data3.Add();
42 | Row.Icon = PictureLib.ActiveUsers;
43 | Row.Title = "Jenna Smith";
44 |
45 | //
46 | Row = Data4.Add();
47 | Row.Icon = PictureLib.ActiveUsers;
48 | Row.Header = "Name";
49 | Row.Title = "John Doe";
50 | Row.After = "Edit";
51 |
52 | Row = Data4.Add();
53 | Row.Icon = PictureLib.ActiveUsers;
54 | Row.Header = "Phone";
55 | Row.Title = "+7 90 111-22-3344";
56 | Row.After = "Edit";
57 |
58 | Row = Data4.Add();
59 | Row.Icon = PictureLib.ActiveUsers;
60 | Row.Header = "Email";
61 | Row.Title = "john@doe";
62 | Row.Footer = "Home";
63 | Row.After = "Edit";
64 |
65 | Row = Data4.Add();
66 | Row.Icon = PictureLib.ActiveUsers;
67 | Row.Header = "Email";
68 | Row.Title = "john@framework7";
69 | Row.Footer = "Work";
70 | Row.After = "Edit";
71 |
72 | //
73 |
74 | Row = Data5.Add();
75 | Row.Image = PictureLib.People1;
76 | Row.Title = "Yellow Submarine";
77 | Row.After = "$15";
78 | Row.Subtitle = "Beatles";
79 | Row.Text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla sagittis tellus ut turpis condimentum, ut dignissim lacus tincidunt. Cras dolor metus, ultrices condimentum sodales sit amet, pharetra sodales eros. Phasellus vel felis tellus. Mauris rutrum ligula nec dapibus feugiat. In vel dui laoreet, commodo augue id, pulvinar lacus.";
80 |
81 | Row = Data5.Add();
82 | Row.Image = PictureLib.People2;
83 | Row.Title = "Don't Stop Me Now";
84 | Row.After = "$22";
85 | Row.Subtitle = "Queen";
86 | Row.Text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla sagittis tellus ut turpis condimentum, ut dignissim lacus tincidunt. Cras dolor metus, ultrices condimentum sodales sit amet, pharetra sodales eros. Phasellus vel felis tellus. Mauris rutrum ligula nec dapibus feugiat. In vel dui laoreet, commodo augue id, pulvinar lacus.";
87 |
88 | Row = Data5.Add();
89 | Row.Image = PictureLib.People3;
90 | Row.Title = "Billie Jean";
91 | Row.After = "$16";
92 | Row.Subtitle = "Michael Jackson";
93 | Row.Text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla sagittis tellus ut turpis condimentum, ut dignissim lacus tincidunt. Cras dolor metus, ultrices condimentum sodales sit amet, pharetra sodales eros. Phasellus vel felis tellus. Mauris rutrum ligula nec dapibus feugiat. In vel dui laoreet, commodo augue id, pulvinar lacus.";
94 |
95 | EndProcedure
96 |
97 | &AtClient
98 | Procedure Data1Selection(Item, SelectedRow, Field, StandardProcessing)
99 |
100 | StandardProcessing = False;
101 |
102 | EndProcedure
103 |
--------------------------------------------------------------------------------
/DataProcessors/Sortable.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | a55e31e1-6af0-40dc-ab3e-421d43d17172
7 | e83afe06-3047-425a-92e8-fcb355894900
8 |
9 |
10 | c61f3df7-7832-4279-a659-71b3c40b6abf
11 | da67c21a-2f3e-48fe-84e6-3d1ea6184bbb
12 |
13 |
14 |
15 | Sortable
16 |
17 |
18 | en
19 | Sortable
20 |
21 |
22 |
23 | true
24 | DataProcessor.Sortable.Form.Form
25 |
26 | false
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/DataProcessors/Sortable/Forms/Form.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/DataProcessors/Sortable/Forms/Form/Ext/Form.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/DataProcessors/Sortable/Forms/Form/Ext/Form/Module.bsl:
--------------------------------------------------------------------------------
1 |
2 | &AtServer
3 | Procedure OnCreateAtServer(Cancel, StandardProcessing)
4 |
5 | Row = Data1.Add();
6 | Row.Title = "Link 1";
7 |
8 | Row = Data1.Add();
9 | Row.Title = "Link 2";
10 |
11 | Row = Data1.Add();
12 | Row.Title = "Link 3";
13 |
14 | //
15 |
16 | EndProcedure
17 |
--------------------------------------------------------------------------------
/DataProcessors/Swiper.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | 32677a0d-544c-480d-9de8-60d6812b32d2
7 | 367956d7-7c21-4719-9360-c19f295fa001
8 |
9 |
10 | 2438ab2f-1718-49c8-9bb6-5acc7effa1f8
11 | 1ed87f1f-20b5-479c-a9d5-074b25d4e537
12 |
13 |
14 |
15 | Swiper
16 |
17 |
18 | en
19 | Swiper
20 |
21 |
22 |
23 | true
24 | DataProcessor.Swiper.Form.Form
25 |
26 | false
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/DataProcessors/Swiper/Forms/Form.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/DataProcessors/Swiper/Forms/Form/Ext/Form.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/DataProcessors/TabbarIcons.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | 68d21b08-3b02-417e-955d-a6c0b52abc56
7 | 281904a6-4722-4794-a75d-41eea551937f
8 |
9 |
10 | c4d62b6c-3e09-48a4-9c4a-5f7b88425865
11 | 9571d54d-9271-4a73-9b48-a51179cb2497
12 |
13 |
14 |
15 | TabbarIcons
16 |
17 |
18 | en
19 | Tabbar icons
20 |
21 |
22 |
23 | true
24 | DataProcessor.TabbarIcons.Form.Form
25 |
26 | false
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/DataProcessors/TabbarIcons/Forms/Form.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/DataProcessors/TabbarIcons/Forms/Form/Ext/Form.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/DataProcessors/Treeview.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | 02558815-439c-4fa5-9192-c793b3dfa189
7 | 744106f1-c214-4cdb-9a2f-a511eefe254f
8 |
9 |
10 | 15135305-7570-4e17-a5b5-7fbabf2c5c1f
11 | b034de4c-b674-4393-8cc2-917477071cac
12 |
13 |
14 |
15 | Treeview
16 |
17 |
18 | en
19 | Treeview
20 |
21 |
22 |
23 | true
24 | DataProcessor.Treeview.Form.Form
25 |
26 | false
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/DataProcessors/Treeview/Forms/Form.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/DataProcessors/Treeview/Forms/Form/Ext/Form.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/DataProcessors/Treeview/Forms/Form/Ext/Form/Module.bsl:
--------------------------------------------------------------------------------
1 |
2 | &AtServer
3 | Procedure OnCreateAtServer(Cancel, StandardProcessing)
4 |
5 | Row = Data1.GetItems().Add();
6 | Row.Title = "Item 1";
7 |
8 | SubRow = Row.GetItems().Add();
9 | SubRow.Title = "Sub Item 1";
10 |
11 | SubSubRow = SubRow.GetItems().Add();
12 | SubSubRow.Title = "Sub Sub Item 1";
13 |
14 | SubSubRow = SubRow.GetItems().Add();
15 | SubSubRow.Title = "Sub Sub Item 2";
16 |
17 | SubRow = Row.GetItems().Add();
18 | SubRow.Title = "Sub Item 2";
19 |
20 | SubSubRow = SubRow.GetItems().Add();
21 | SubSubRow.Title = "Sub Sub Item 1";
22 |
23 | SubSubRow = SubRow.GetItems().Add();
24 | SubSubRow.Title = "Sub Sub Item 2";
25 |
26 | Row = Data1.GetItems().Add();
27 | Row.Title = "Item 2";
28 |
29 | SubRow = Row.GetItems().Add();
30 | SubRow.Title = "Sub Item 1";
31 |
32 | SubSubRow = SubRow.GetItems().Add();
33 | SubSubRow.Title = "Sub Sub Item 1";
34 |
35 | SubSubRow = SubRow.GetItems().Add();
36 | SubSubRow.Title = "Sub Sub Item 2";
37 |
38 | SubRow = Row.GetItems().Add();
39 | SubRow.Title = "Sub Item 2";
40 |
41 | SubSubRow = SubRow.GetItems().Add();
42 | SubSubRow.Title = "Sub Sub Item 1";
43 |
44 | SubSubRow = SubRow.GetItems().Add();
45 | SubSubRow.Title = "Sub Sub Item 2";
46 |
47 | Row = Data1.GetItems().Add();
48 | Row.Title = "Item 3";
49 |
50 | EndProcedure
51 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2023 - present Ingvar Vilkman
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/Languages/English.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | English
6 |
7 |
8 | en
9 | English
10 |
11 |
12 |
13 | en
14 |
15 |
16 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Mobile Explorer
2 |
3 | Служебная конфигурация для тестирования пользовательского опыта и интерфейсных возможностей платформы 1С
4 |
5 | Вдохновлено
6 |
7 | [](https://framework7.io/)
8 |
--------------------------------------------------------------------------------
/StyleItems/BlockBackColor.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | BlockBackColor
6 |
7 |
8 | en
9 | Block back color
10 |
11 |
12 |
13 | Color
14 | #FFFFFF
15 |
16 |
17 |
--------------------------------------------------------------------------------
/StyleItems/BlockFont.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | BlockFont
6 |
7 |
8 | en
9 | Block font
10 |
11 |
12 |
13 | Font
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/StyleItems/ButtonFont.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | ButtonFont
6 |
7 |
8 | en
9 | Button font
10 |
11 |
12 |
13 | Font
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/StyleItems/FieldTitleFont.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | FieldTitleFont
6 |
7 |
8 | en
9 | Field title font
10 |
11 |
12 |
13 | Font
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/StyleItems/FillBackColor.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | FillBackColor
6 |
7 |
8 | en
9 | Fill back color
10 |
11 |
12 |
13 | Color
14 | #007AFF
15 |
16 |
17 |
--------------------------------------------------------------------------------
/StyleItems/FillTextColor.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | FillTextColor
6 |
7 |
8 | en
9 | Fill text color
10 |
11 |
12 |
13 | Color
14 | #FFFFFF
15 |
16 |
17 |
--------------------------------------------------------------------------------
/StyleItems/OutlineBackColor.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | OutlineBackColor
6 |
7 |
8 | en
9 | Outline back color
10 |
11 |
12 |
13 | Color
14 | #FFFFFF
15 |
16 |
17 |
--------------------------------------------------------------------------------
/StyleItems/OutlineBorderColor.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | OutlineBorderColor
6 |
7 |
8 | en
9 | Outline border color
10 |
11 |
12 |
13 | Color
14 | #007AFF
15 |
16 |
17 |
--------------------------------------------------------------------------------
/StyleItems/OutlineTextColor.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | OutlineTextColor
6 |
7 |
8 | en
9 | Outline text color
10 |
11 |
12 |
13 | Color
14 | #007AFF
15 |
16 |
17 |
--------------------------------------------------------------------------------
/StyleItems/TonalBackColor.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | TonalBackColor
6 |
7 |
8 | en
9 | Tonal back color
10 |
11 |
12 |
13 | Color
14 | #D9EBFF
15 |
16 |
17 |
--------------------------------------------------------------------------------
/StyleItems/TonalTextColor.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | TonalTextColor
6 |
7 |
8 | en
9 | Tonal text color
10 |
11 |
12 |
13 | Color
14 | #007AFF
15 |
16 |
17 |
--------------------------------------------------------------------------------
/StyleItems/UsualTextColor.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | UsualTextColor
6 |
7 |
8 | en
9 | Usual text color
10 |
11 |
12 |
13 | Color
14 | #007AFF
15 |
16 |
17 |
--------------------------------------------------------------------------------
/docs/framework7.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------