├── .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 |
Form
32 |
33 |
34 |
-------------------------------------------------------------------------------- /DataProcessors/Accordion/Forms/Form.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 |
4 | 5 | Form 6 | 7 | 8 | en 9 | Form 10 | 11 | 12 | 13 | Managed 14 | false 15 | 16 | PlatformApplication 17 | MobilePlatformApplication 18 | 19 | Any 20 | 21 | 22 |
23 |
-------------------------------------------------------------------------------- /DataProcessors/Accordion/Forms/Form/Ext/Form.xml: -------------------------------------------------------------------------------- 1 |  2 |
3 | DontBlock 4 | Vertical 5 | 6 | 7 | 8 | 9 | <v8:item> 10 | <v8:lang>en</v8:lang> 11 | <v8:content>List View Accordion</v8:content> 12 | </v8:item> 13 | 14 | 15 | 16 | en 17 | Group list view accordion 18 | 19 | 20 | Vertical 21 | WeakSeparation 22 | 23 | 24 | 25 | 26 | <v8:item> 27 | <v8:lang>en</v8:lang> 28 | <v8:content>Lorem Ipsum</v8:content> 29 | </v8:item> 30 | 31 | 32 | 33 | en 34 | Group accordion content1 35 | 36 | 37 | Vertical 38 | Collapsible 39 | true 40 | Picture 41 | WeakSeparation 42 | 43 | 44 | 45 | 46 | HorizontalIfPossible 47 | None 48 | style:BlockBackColor 49 | 50 | 51 | 52 | true 53 | 54 | <v8:item> 55 | <v8:lang>en</v8:lang> 56 | <v8:content>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean elementum id neque nec commodo. Sed vel justo at turpis laoreet pellentesque quis sed lorem. Integer semper arcu nibh, non mollis arcu tempor vel. Sed pharetra tortor vitae est rhoncus, vel congue dui sollicitudin. Donec eu arcu dignissim felis viverra blandit suscipit eget ipsum.</v8:content> 57 | </v8:item> 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | <v8:item> 69 | <v8:lang>en</v8:lang> 70 | <v8:content>Nested List</v8:content> 71 | </v8:item> 72 | 73 | 74 | 75 | en 76 | Group accordion content2 77 | 78 | 79 | Vertical 80 | Collapsible 81 | true 82 | Picture 83 | WeakSeparation 84 | 85 | 86 | 87 | 88 | Vertical 89 | None 90 | style:BlockBackColor 91 | 92 | 93 | 94 | 95 | <v8:item> 96 | <v8:lang>en</v8:lang> 97 | <v8:content>Item 1</v8:content> 98 | </v8:item> 99 | 100 | 101 | 102 | 103 | 104 | true 105 | 106 | 107 | Overline 108 | 109 | 110 | 111 | 112 | 113 | 114 | <v8:item> 115 | <v8:lang>en</v8:lang> 116 | <v8:content>Item 2</v8:content> 117 | </v8:item> 118 | 119 | 120 | 121 | 122 | 123 | true 124 | 125 | 126 | Overline 127 | 128 | 129 | 130 | 131 | 132 | 133 | <v8:item> 134 | <v8:lang>en</v8:lang> 135 | <v8:content>Item 3</v8:content> 136 | </v8:item> 137 | 138 | 139 | 140 | 141 | 142 | true 143 | 144 | 145 | Overline 146 | 147 | 148 | 149 | 150 | 151 | 152 | <v8:item> 153 | <v8:lang>en</v8:lang> 154 | <v8:content>Item 4</v8:content> 155 | </v8:item> 156 | 157 | 158 | 159 | 160 | 161 | true 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | <v8:item> 173 | <v8:lang>en</v8:lang> 174 | <v8:content>Integer semper</v8:content> 175 | </v8:item> 176 | 177 | 178 | 179 | en 180 | Group accordion content 181 | 182 | 183 | Vertical 184 | Collapsible 185 | true 186 | Picture 187 | WeakSeparation 188 | 189 | 190 | 191 | 192 | HorizontalIfPossible 193 | None 194 | style:BlockBackColor 195 | 196 | 197 | 198 | 199 | <v8:item> 200 | <v8:lang>en</v8:lang> 201 | <v8:content>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean elementum id neque nec commodo. Sed vel justo at turpis laoreet pellentesque quis sed lorem. Integer semper arcu nibh, non mollis arcu tempor vel. Sed pharetra tortor vitae est rhoncus, vel congue dui sollicitudin. Donec eu arcu dignissim felis viverra blandit suscipit eget ipsum.</v8:content> 202 | </v8:item> 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | -------------------------------------------------------------------------------- /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 |
Form
32 |
33 |
34 |
-------------------------------------------------------------------------------- /DataProcessors/ActionSheet/Forms/Form.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 |
4 | 5 | Form 6 | 7 | 8 | en 9 | Form 10 | 11 | 12 | 13 | Managed 14 | false 15 | 16 | PlatformApplication 17 | MobilePlatformApplication 18 | 19 | Any 20 | 21 | 22 |
23 |
-------------------------------------------------------------------------------- /DataProcessors/ActionSheet/Forms/Form/Ext/Form.xml: -------------------------------------------------------------------------------- 1 |  2 |
3 | DontBlock 4 | Vertical 5 | 6 | 7 | 12 | 17 | 18 | 19 | 20 | 21 | cfg:DataProcessorObject.ActionSheet 22 | 23 | true 24 | 25 | 26 | 27 | 28 | 29 | <v8:item> 30 | <v8:lang>en</v8:lang> 31 | <v8:content>One group (ValueList.ChooseItem)</v8:content> 32 | </v8:item> 33 | 34 | 35 | 36 | en 37 | One group 38 | 39 | 40 | OneGroup 41 | 42 | 43 | 44 | <v8:item> 45 | <v8:lang>en</v8:lang> 46 | <v8:content>Two groups</v8:content> 47 | </v8:item> 48 | 49 | 50 | 51 | en 52 | Two groups 53 | 54 | 55 | TwoGroups 56 | 57 | 58 | -------------------------------------------------------------------------------- /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 |
Form
32 |
33 |
34 |
-------------------------------------------------------------------------------- /DataProcessors/Buttons/Forms/Form.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 |
4 | 5 | Form 6 | 7 | 8 | en 9 | Form 10 | 11 | 12 | 13 | Managed 14 | false 15 | 16 | PlatformApplication 17 | MobilePlatformApplication 18 | 19 | Any 20 | 21 | 22 |
23 |
-------------------------------------------------------------------------------- /DataProcessors/Buttons/Forms/Form/Ext/Form.xml: -------------------------------------------------------------------------------- 1 |  2 |
3 | DontBlock 4 | Vertical 5 | 6 | 7 | 8 | 9 | <v8:item> 10 | <v8:lang>en</v8:lang> 11 | <v8:content>Usual Buttons</v8:content> 12 | </v8:item> 13 | 14 | HorizontalIfPossible 15 | WeakSeparation 16 | 17 | 18 | 27 | 36 | 46 | 47 | 48 | 49 | 50 | <v8:item> 51 | <v8:lang>en</v8:lang> 52 | <v8:content>Tonal Buttons</v8:content> 53 | </v8:item> 54 | 55 | HorizontalIfPossible 56 | WeakSeparation 57 | 58 | 59 | 69 | 79 | 90 | 91 | 92 | 93 | 94 | <v8:item> 95 | <v8:lang>en</v8:lang> 96 | <v8:content>Fill Buttons</v8:content> 97 | </v8:item> 98 | 99 | HorizontalIfPossible 100 | WeakSeparation 101 | 102 | 103 | 113 | 123 | 134 | 135 | 136 | 137 | 138 | <v8:item> 139 | <v8:lang>en</v8:lang> 140 | <v8:content>Outline Buttons</v8:content> 141 | </v8:item> 142 | 143 | HorizontalIfPossible 144 | WeakSeparation 145 | 146 | 147 | 158 | 169 | 181 | 182 | 183 | 184 | 185 | <v8:item> 186 | <v8:lang>en</v8:lang> 187 | <v8:content>Segmented</v8:content> 188 | </v8:item> 189 | 190 | Vertical 191 | Center 192 | WeakSeparation 193 | 194 | 195 | 196 | Segmented 197 | None 198 | Tumbler 199 | 200 | 201 | 202 | 0 203 | 204 | 205 | 206 | en 207 | Button 208 | 209 | 210 | Button1 211 | 212 | 213 | 214 | 215 | 0 216 | 217 | 218 | 219 | en 220 | Button 221 | 222 | 223 | Button2 224 | 225 | 226 | 227 | 228 | 0 229 | 230 | 231 | 232 | en 233 | Active 234 | 235 | 236 | Button3 237 | 238 | 239 | 240 | 241 | style:UsualTextColor 242 | style:OutlineBorderColor 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | <v8:item> 252 | <v8:lang>en</v8:lang> 253 | <v8:content>List-Block Buttons</v8:content> 254 | </v8:item> 255 | 256 | Vertical 257 | WeakSeparation 258 | 259 | 260 | 275 | 290 | 305 | 306 | 307 | 308 | 309 | <v8:item> 310 | <v8:lang>en</v8:lang> 311 | <v8:content>List-Block Buttons</v8:content> 312 | </v8:item> 313 | 314 | Vertical 315 | WeakSeparation 316 | false 317 | 318 | 319 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | cfg:DataProcessorObject.Buttons 341 | 342 | true 343 | 344 | 345 | 346 | <v8:item> 347 | <v8:lang>en</v8:lang> 348 | <v8:content>Segmented</v8:content> 349 | </v8:item> 350 | 351 | 352 | xs:string 353 | 354 | 0 355 | Variable 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | <v8:item> 364 | <v8:lang>en</v8:lang> 365 | <v8:content>Button</v8:content> 366 | </v8:item> 367 | 368 | 369 | 370 | en 371 | Button 372 | 373 | 374 | 375 | 376 | 377 | <v8:item> 378 | <v8:lang>en</v8:lang> 379 | <v8:content>Round</v8:content> 380 | </v8:item> 381 | 382 | 383 | 384 | en 385 | Round 386 | 387 | 388 | 389 | 390 | 391 | <v8:item> 392 | <v8:lang>en</v8:lang> 393 | <v8:content>Active</v8:content> 394 | </v8:item> 395 | 396 | 397 | 398 | en 399 | Round 400 | 401 | 402 | 403 | 404 | -------------------------------------------------------------------------------- /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 |
Form
32 |
33 |
34 |
-------------------------------------------------------------------------------- /DataProcessors/Checkbox/Forms/Form.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 |
4 | 5 | Form 6 | 7 | 8 | en 9 | Form 10 | 11 | 12 | 13 | Managed 14 | false 15 | 16 | PlatformApplication 17 | MobilePlatformApplication 18 | 19 | Any 20 | 21 | 22 |
23 |
-------------------------------------------------------------------------------- /DataProcessors/Checkbox/Forms/Form/Ext/Form.xml: -------------------------------------------------------------------------------- 1 |  2 |
3 | DontBlock 4 | Vertical 5 | 6 | 7 | OnCreateAtServer 8 | 9 | 10 | 11 | 12 | <v8:item> 13 | <v8:lang>en</v8:lang> 14 | <v8:content>Checkbox Group</v8:content> 15 | </v8:item> 16 | 17 | Vertical 18 | WeakSeparation 19 | 20 | 21 | 22 | Books 23 | Right 24 | Auto 25 | 26 | 27 | 28 | 29 | 30 | Drinks 31 | Right 32 | Auto 33 | 34 | 35 | 36 | 37 | 38 | Food 39 | Right 40 | Auto 41 | 42 | 43 | 44 | 45 | 46 | Movies 47 | Right 48 | Auto 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | <v8:item> 58 | <v8:lang>en</v8:lang> 59 | <v8:content>Checkbox Group</v8:content> 60 | </v8:item> 61 | 62 | Vertical 63 | WeakSeparation 64 | false 65 | 66 | 67 | 68 | Books 69 | Auto 70 | 71 | 72 | 73 | 74 | 75 | Drinks 76 | Auto 77 | 78 | 79 | 80 | 81 | 82 | Food 83 | Auto 84 | 85 | 86 | 87 | 88 | 89 | Movies 90 | Auto 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | <v8:item> 100 | <v8:lang>en</v8:lang> 101 | <v8:content>With Media Lists</v8:content> 102 | </v8:item> 103 | 104 | Vertical 105 | WeakSeparation 106 | 107 | 108 | 109 | 110 | <v8:item> 111 | <v8:lang>en</v8:lang> 112 | <v8:content>List item1</v8:content> 113 | </v8:item> 114 | 115 | 116 | 117 | en 118 | List item1 119 | 120 | 121 | true 122 | AlwaysHorizontal 123 | Center 124 | None 125 | false 126 | 127 | 128 | 129 | Facebook 130 | None 131 | Auto 132 | 133 | 134 | 135 | 136 | 137 | 138 | <v8:item> 139 | <v8:lang>en</v8:lang> 140 | <v8:content>List item content1</v8:content> 141 | </v8:item> 142 | 143 | 144 | 145 | en 146 | List item content1 147 | 148 | 149 | Vertical 150 | WeakSeparation 151 | false 152 | 153 | 154 | 155 | 156 | <v8:item> 157 | <v8:lang>en</v8:lang> 158 | <v8:content>List item title1</v8:content> 159 | </v8:item> 160 | 161 | 162 | 163 | en 164 | List item title1 165 | 166 | 167 | true 168 | AlwaysHorizontal 169 | None 170 | false 171 | 172 | 173 | 174 | true 175 | 176 | 177 | <v8:item> 178 | <v8:lang>en</v8:lang> 179 | <v8:content>Facebook</v8:content> 180 | </v8:item> 181 | 182 | 183 | 184 | 185 | 186 | style:BorderColor 187 | 188 | <v8:item> 189 | <v8:lang>en</v8:lang> 190 | <v8:content>17:14</v8:content> 191 | </v8:item> 192 | 193 | Right 194 | 195 | 196 | 197 | 198 | 199 | 200 | 1 201 | true 202 | 203 | <v8:item> 204 | <v8:lang>en</v8:lang> 205 | <v8:content>New messages from John Doe</v8:content> 206 | </v8:item> 207 | 208 | 209 | 210 | 211 | 212 | 2 213 | true 214 | style:BorderColor 215 | 216 | <v8:item> 217 | <v8:lang>en</v8:lang> 218 | <v8:content>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.</v8:content> 219 | </v8:item> 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | <v8:item> 231 | <v8:lang>en</v8:lang> 232 | <v8:content>List item1</v8:content> 233 | </v8:item> 234 | 235 | 236 | 237 | en 238 | List item1 239 | 240 | 241 | true 242 | AlwaysHorizontal 243 | Center 244 | None 245 | false 246 | 247 | 248 | 249 | JohnDoe 250 | None 251 | Auto 252 | 253 | 254 | 255 | 256 | 257 | 258 | <v8:item> 259 | <v8:lang>en</v8:lang> 260 | <v8:content>List item content1</v8:content> 261 | </v8:item> 262 | 263 | 264 | 265 | en 266 | List item content1 267 | 268 | 269 | Vertical 270 | WeakSeparation 271 | false 272 | 273 | 274 | 275 | 276 | <v8:item> 277 | <v8:lang>en</v8:lang> 278 | <v8:content>List item title1</v8:content> 279 | </v8:item> 280 | 281 | 282 | 283 | en 284 | List item title1 285 | 286 | 287 | true 288 | AlwaysHorizontal 289 | None 290 | false 291 | 292 | 293 | 294 | true 295 | 296 | 297 | <v8:item> 298 | <v8:lang>en</v8:lang> 299 | <v8:content>John Doe (via Twitter)</v8:content> 300 | </v8:item> 301 | 302 | 303 | 304 | 305 | 306 | style:BorderColor 307 | 308 | <v8:item> 309 | <v8:lang>en</v8:lang> 310 | <v8:content>17:11</v8:content> 311 | </v8:item> 312 | 313 | Right 314 | 315 | 316 | 317 | 318 | 319 | 320 | 1 321 | true 322 | 323 | <v8:item> 324 | <v8:lang>en</v8:lang> 325 | <v8:content>John Doe (@_johndoe) mentioned you on Twitter!</v8:content> 326 | </v8:item> 327 | 328 | 329 | 330 | 331 | 332 | 2 333 | true 334 | style:BorderColor 335 | 336 | <v8:item> 337 | <v8:lang>en</v8:lang> 338 | <v8:content>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.</v8:content> 339 | </v8:item> 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | <v8:item> 353 | <v8:lang>en</v8:lang> 354 | <v8:content>Checkbox Group (ValueTable)</v8:content> 355 | </v8:item> 356 | 357 | HorizontalIfPossible 358 | WeakSeparation 359 | 360 | 361 | 362 | List 363 | true 364 | false 365 | false 366 | true 367 | true 368 | Cell 369 |
false
370 | false 371 | false 372 | true 373 | true 374 | true 375 | Data1 376 | 377 | Add 378 | CancelSearch 379 | Change 380 | Copy 381 | CopyToClipboard 382 | Delete 383 | EndEdit 384 | Find 385 | FindByCurrentValue 386 | MoveDown 387 | MoveUp 388 | OutputList 389 | SearchEverywhere 390 | SearchHistory 391 | SelectAll 392 | ShowMultipleSelection 393 | ShowRowRearrangement 394 | SortListAsc 395 | SortListDesc 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | Data1 404 | SearchStringRepresentation 405 | 406 | 407 | 408 | 409 | 410 | 411 | Data1 412 | ViewStatusRepresentation 413 | 414 | 415 | 416 | 417 | 418 | 419 | Data1 420 | SearchControl 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | Data1.Title 429 | EnterOnInput 430 | true 431 | true 432 | 433 | 434 | 435 | 436 | 437 |
438 |
439 |
440 |
441 | 442 | 443 | 444 | cfg:DataProcessorObject.Checkbox 445 | 446 | true 447 | 448 | 449 | 450 | <v8:item> 451 | <v8:lang>en</v8:lang> 452 | <v8:content>Books</v8:content> 453 | </v8:item> 454 | 455 | 456 | xs:boolean 457 | 458 | 459 | 460 | 461 | <v8:item> 462 | <v8:lang>en</v8:lang> 463 | <v8:content>Movies</v8:content> 464 | </v8:item> 465 | 466 | 467 | xs:boolean 468 | 469 | 470 | 471 | 472 | <v8:item> 473 | <v8:lang>en</v8:lang> 474 | <v8:content>Food</v8:content> 475 | </v8:item> 476 | 477 | 478 | xs:boolean 479 | 480 | 481 | 482 | 483 | <v8:item> 484 | <v8:lang>en</v8:lang> 485 | <v8:content>Drinks</v8:content> 486 | </v8:item> 487 | 488 | 489 | xs:boolean 490 | 491 | 492 | 493 | 494 | <v8:item> 495 | <v8:lang>en</v8:lang> 496 | <v8:content>Facebook</v8:content> 497 | </v8:item> 498 | 499 | 500 | xs:boolean 501 | 502 | 503 | 504 | 505 | <v8:item> 506 | <v8:lang>en</v8:lang> 507 | <v8:content>John doe (via Twitter)</v8:content> 508 | </v8:item> 509 | 510 | 511 | xs:boolean 512 | 513 | 514 | 515 | 516 | xs:decimal 517 | 518 | 10 519 | 0 520 | Any 521 | 522 | 523 | 524 | 525 | 526 | <v8:item> 527 | <v8:lang>en</v8:lang> 528 | <v8:content>Data1</v8:content> 529 | </v8:item> 530 | 531 | 532 | v8:ValueTable 533 | 534 | 535 | 536 | 537 | <v8:item> 538 | <v8:lang>en</v8:lang> 539 | <v8:content>Title</v8:content> 540 | </v8:item> 541 | 542 | 543 | xs:string 544 | 545 | 0 546 | Variable 547 | 548 | 549 | 550 | 551 | 552 | <v8:item> 553 | <v8:lang>en</v8:lang> 554 | <v8:content>Link</v8:content> 555 | </v8:item> 556 | 557 | 558 | xs:string 559 | 560 | 0 561 | Variable 562 | 563 | 564 | 565 | 566 | 567 | 568 | -------------------------------------------------------------------------------- /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 |
Form
32 |
33 |
34 |
-------------------------------------------------------------------------------- /DataProcessors/ContentBlock/Forms/Form.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 |
4 | 5 | Form 6 | 7 | 8 | en 9 | Form 10 | 11 | 12 | 13 | Managed 14 | false 15 | 16 | PlatformApplication 17 | MobilePlatformApplication 18 | 19 | Any 20 | 21 | 22 |
23 |
-------------------------------------------------------------------------------- /DataProcessors/ContentBlock/Forms/Form/Ext/Form.xml: -------------------------------------------------------------------------------- 1 |  2 |
3 | DontBlock 4 | Vertical 5 | 6 | 7 | 8 | 9 | <v8:item> 10 | <v8:lang>en</v8:lang> 11 | <v8:content>This paragraph is outside of content block. Not cool, but useful for any custom elements with custom styling.</v8:content> 12 | </v8:item> 13 | 14 | 15 | 16 | 17 | 18 | 19 | <v8:item> 20 | <v8:lang>en</v8:lang> 21 | <v8:content>Block Title</v8:content> 22 | </v8:item> 23 | 24 | 25 | 26 | en 27 | Group block1 28 | 29 | 30 | HorizontalIfPossible 31 | WeakSeparation 32 | 33 | 34 | 35 | 36 | <v8:item> 37 | <v8:lang>en</v8:lang> 38 | <v8:content>Here comes paragraph within content block. Donec et nulla auctor massa pharetra adipiscing ut sit amet sem. Suspendisse molestie velit vitae mattis tincidunt. Ut sit amet quam mollis, vulputate turpis vel, sagittis felis.</v8:content> 39 | </v8:item> 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | <v8:item> 49 | <v8:lang>en</v8:lang> 50 | <v8:content>Strong Block</v8:content> 51 | </v8:item> 52 | 53 | 54 | 55 | en 56 | Group block1 57 | 58 | 59 | HorizontalIfPossible 60 | WeakSeparation 61 | 62 | 63 | 64 | 65 | HorizontalIfPossible 66 | None 67 | style:BlockBackColor 68 | 69 | 70 | 71 | 72 | <v8:item> 73 | <v8:lang>en</v8:lang> 74 | <v8:content>Here comes another text block with additional "block-strong" class. Praesent nec imperdiet diam. Maecenas vel lectus porttitor, consectetur magna nec, viverra sem. Aliquam sed risus dolor. Morbi tincidunt ut libero id sodales. Integer blandit varius nisi quis consectetur.</v8:content> 75 | </v8:item> 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | <v8:item> 87 | <v8:lang>en</v8:lang> 88 | <v8:content>Strong Outline Block</v8:content> 89 | </v8:item> 90 | 91 | 92 | 93 | en 94 | Group block1 95 | 96 | 97 | HorizontalIfPossible 98 | WeakSeparation 99 | 100 | 101 | 102 | 103 | <v8:item> 104 | <v8:lang>en</v8:lang> 105 | <v8:content>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptates itaque autem qui quaerat vero ducimus praesentium quibusdam veniam error ut alias, numquam iste ea quos maxime consequatur ullam at a.</v8:content> 106 | </v8:item> 107 | 108 | true 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | <v8:item> 117 | <v8:lang>en</v8:lang> 118 | <v8:content>Strong Inset Block</v8:content> 119 | </v8:item> 120 | 121 | 122 | 123 | en 124 | Group block1 125 | 126 | 127 | HorizontalIfPossible 128 | WeakSeparation 129 | 130 | 131 | 132 | 133 | HorizontalIfPossible 134 | None 135 | false 136 | style:BlockBackColor 137 | 138 | 139 | 140 | 141 | <v8:item> 142 | <v8:lang>en</v8:lang> 143 | <v8:content>Donec et nulla auctor massa pharetra adipiscing ut sit amet sem. Suspendisse molestie velit vitae mattis tincidunt. Ut sit amet quam mollis, vulputate turpis vel, sagittis felis.</v8:content> 144 | </v8:item> 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | cfg:DataProcessorObject.ContentBlock 158 | 159 | true 160 | 161 | 162 | -------------------------------------------------------------------------------- /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 |
Form
32 |
33 |
34 |
-------------------------------------------------------------------------------- /DataProcessors/Gauge/Forms/Form.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 |
4 | 5 | Form 6 | 7 | 8 | en 9 | Form 10 | 11 | 12 | 13 | Managed 14 | false 15 | 16 | PlatformApplication 17 | MobilePlatformApplication 18 | 19 | Any 20 | 21 | 22 |
23 |
-------------------------------------------------------------------------------- /DataProcessors/Gauge/Forms/Form/Ext/Form.xml: -------------------------------------------------------------------------------- 1 |  2 |
3 | DontBlock 4 | Vertical 5 | 6 | 7 | OnCreateAtServer 8 | 9 | 10 | 11 | Chart1 12 | None 13 | false 14 | 15 | 16 | 17 | 18 | 19 | Percent 20 | 21 | 22 | 23 | 24 | PercentOnChange 25 | 26 | 27 | 28 | 29 | 30 | 31 | cfg:DataProcessorObject.Gauge 32 | 33 | true 34 | 35 | 36 | 37 | <v8:item> 38 | <v8:lang>en</v8:lang> 39 | <v8:content>Chart1</v8:content> 40 | </v8:item> 41 | 42 | 43 | d5p1:Chart 44 | 45 | 46 | 1 47 | 0 48 | true 49 | 0 50 | 51 | 1 52 | auto 53 | 54 | Solid 55 | 56 | Auto 57 | 58 | 59 | # 60 | Pivot 61 | 62 | 63 | false 64 | false 65 | false 66 | false 67 | 68 | true 69 | 0 70 | -1 71 | 0 72 | Column 73 | None 74 | , 75 | Edge 76 | 77 | 78 | style:FormTextColor 79 | 80 | true 81 | auto 82 | 83 | Single 84 | 85 | auto 86 | None 87 | SouthWest 88 | 89 | true 90 | true 91 | 92 | WithoutBorder 93 | 94 | style:BorderColor 95 | 96 | WithoutBorder 97 | 98 | style:BorderColor 99 | 100 | WithoutBorder 101 | 102 | style:BorderColor 103 | false 104 | style:FieldBackColor 105 | false 106 | style:FieldBackColor 107 | false 108 | style:FieldBackColor 109 | false 110 | style:FieldBackColor 111 | style:FormTextColor 112 | style:FormTextColor 113 | style:FormTextColor 114 | 115 | 116 | 117 | true 118 | true 119 | true 120 | true 121 | true 122 | 123 | Auto 124 | 125 | Solid 126 | 127 | auto 128 | true 129 | true 130 | NotDefined 131 | 4 132 | 30 133 | Half 134 | 0 135 | false 136 | 0 137 | 0 138 | true 139 | false 140 | false 141 | false 142 | false 143 | true 144 | true 145 | Right 146 | 147 | true 148 | Auto 149 | Auto 150 | 0 151 | false 152 | false 153 | false 154 | #A90000 155 | Circle 156 | Needle 157 | 158 | 0 159 | 180 160 | 5 161 | InsideScale 162 | false 163 | 4 164 | #A9A9A9 165 | true 166 | 0 167 | true 168 | 0 169 | false 170 | true 171 | true 172 | true 173 | 174 | 0 175 | 0.17 176 | 0 177 | 0 178 | 179 | 180 | 0.83 181 | 0 182 | 0.08 183 | 0 184 | 185 | 186 | 0.83 187 | 0 188 | 0 189 | 0.92 190 | 191 | style:BorderColor 192 | 193 | Single 194 | 195 | 196 | false 197 | true 198 | 95 199 | 0 200 | 10 201 | 10 202 | 3 203 | 204 | Solid 205 | 206 | #000000 207 | 208 | 209 | 210 | 211 | 212 | 213 | <v8:item> 214 | <v8:lang>en</v8:lang> 215 | <v8:content>Percent</v8:content> 216 | </v8:item> 217 | 218 | 219 | xs:decimal 220 | 221 | 10 222 | 0 223 | Any 224 | 225 | 226 | 227 | 228 | -------------------------------------------------------------------------------- /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 |
Form
32 |
33 |
34 |
-------------------------------------------------------------------------------- /DataProcessors/Inputs/Forms/Form.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 |
4 | 5 | Form 6 | 7 | 8 | en 9 | Form 10 | 11 | 12 | 13 | Managed 14 | false 15 | 16 | PlatformApplication 17 | MobilePlatformApplication 18 | 19 | Any 20 | 21 | 22 |
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 |
Form
32 |
33 |
34 |
-------------------------------------------------------------------------------- /DataProcessors/ListView/Forms/Form.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 |
4 | 5 | Form 6 | 7 | 8 | en 9 | Form 10 | 11 | 12 | 13 | Managed 14 | false 15 | 16 | PlatformApplication 17 | MobilePlatformApplication 18 | 19 | Any 20 | 21 | 22 |
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 |
Form
32 |
33 |
34 |
-------------------------------------------------------------------------------- /DataProcessors/Sortable/Forms/Form.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 |
4 | 5 | Form 6 | 7 | 8 | en 9 | Form 10 | 11 | 12 | 13 | Managed 14 | false 15 | 16 | PlatformApplication 17 | MobilePlatformApplication 18 | 19 | Any 20 | 21 | 22 |
23 |
-------------------------------------------------------------------------------- /DataProcessors/Sortable/Forms/Form/Ext/Form.xml: -------------------------------------------------------------------------------- 1 |  2 |
3 | DontBlock 4 | Vertical 5 | 6 | 7 | OnCreateAtServer 8 | 9 | 10 | 11 | 12 | <v8:item> 13 | <v8:lang>en</v8:lang> 14 | <v8:content>Songs</v8:content> 15 | </v8:item> 16 | 17 | 18 | 19 | en 20 | Group1 21 | 22 | 23 | HorizontalIfPossible 24 | WeakSeparation 25 | 26 | 27 | 28 | List 29 | true 30 | false 31 | Cell 32 |
false
33 | false 34 | false 35 | true 36 | true 37 | true 38 | Data1 39 | 40 | 41 | 42 | 43 | 44 | 45 | Data1 46 | SearchStringRepresentation 47 | 48 | 49 | 50 | 51 | 52 | 53 | Data1 54 | ViewStatusRepresentation 55 | 56 | 57 | 58 | 59 | 60 | 61 | Data1 62 | SearchControl 63 | 64 | 65 | 66 | 67 | 68 | 69 | Data1Selection 70 | 71 | 72 | 73 | Data1.Title 74 | EnterOnInput 75 | true 76 | true 77 | 78 | 79 | 80 | 81 | 82 |
83 |
84 |
85 |
86 | 87 | 88 | 89 | cfg:DataProcessorObject.Sortable 90 | 91 | true 92 | 93 | 94 | 95 | <v8:item> 96 | <v8:lang>en</v8:lang> 97 | <v8:content>Data1</v8:content> 98 | </v8:item> 99 | 100 | 101 | v8:ValueTable 102 | 103 | 104 | 105 | 106 | <v8:item> 107 | <v8:lang>en</v8:lang> 108 | <v8:content>Title</v8:content> 109 | </v8:item> 110 | 111 | 112 | xs:string 113 | 114 | 0 115 | Variable 116 | 117 | 118 | 119 | 120 | 121 | <v8:item> 122 | <v8:lang>en</v8:lang> 123 | <v8:content>Link</v8:content> 124 | </v8:item> 125 | 126 | 127 | xs:string 128 | 129 | 0 130 | Variable 131 | 132 | 133 | 134 | 135 | 136 | 137 | -------------------------------------------------------------------------------- /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 |
Form
32 |
33 |
34 |
-------------------------------------------------------------------------------- /DataProcessors/Swiper/Forms/Form.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 |
4 | 5 | Form 6 | 7 | 8 | en 9 | Form 10 | 11 | 12 | 13 | Managed 14 | false 15 | 16 | PlatformApplication 17 | MobilePlatformApplication 18 | 19 | Any 20 | 21 | 22 |
23 |
-------------------------------------------------------------------------------- /DataProcessors/Swiper/Forms/Form/Ext/Form.xml: -------------------------------------------------------------------------------- 1 |  2 |
3 | DontBlock 4 | Vertical 5 | 6 | 7 | 8 | 9 | <v8:item> 10 | <v8:lang>en</v8:lang> 11 | <v8:content>Pages</v8:content> 12 | </v8:item> 13 | 14 | 15 | 16 | en 17 | Pages 18 | 19 | 20 | Swipe 21 | 22 | 23 | 24 | 25 | <v8:item> 26 | <v8:lang>en</v8:lang> 27 | <v8:content>Tab 1</v8:content> 28 | </v8:item> 29 | 30 | 31 | 32 | en 33 | Page1 34 | 35 | 36 | 37 | StdPicture.CreateFolder 38 | true 39 | 40 | Vertical 41 | true 42 | 43 | 44 | 45 | 46 | <v8:item> 47 | <v8:lang>en</v8:lang> 48 | <v8:content>Tab 1 content 49 | 50 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ullam enim quia molestiae facilis laudantium voluptates obcaecati officia cum, sit libero commodi. Ratione illo suscipit temporibus sequi iure ad laboriosam accusamus? 51 | </v8:content> 52 | </v8:item> 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | <v8:item> 62 | <v8:lang>en</v8:lang> 63 | <v8:content>Tab 2</v8:content> 64 | </v8:item> 65 | 66 | 67 | 68 | en 69 | Page2 70 | 71 | 72 | 73 | StdPicture.DataCompositionGroupFieldsDisabled 74 | true 75 | 76 | Vertical 77 | true 78 | 79 | 80 | 81 | 82 | <v8:item> 83 | <v8:lang>en</v8:lang> 84 | <v8:content>Tab 2 content 85 | 86 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ullam enim quia molestiae facilis laudantium voluptates obcaecati officia cum, sit libero commodi. Ratione illo suscipit temporibus sequi iure ad laboriosam accusamus? 87 | </v8:content> 88 | </v8:item> 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | <v8:item> 98 | <v8:lang>en</v8:lang> 99 | <v8:content>Tab 3</v8:content> 100 | </v8:item> 101 | 102 | 103 | 104 | en 105 | Page2 106 | 107 | 108 | 109 | StdPicture.GenerateReport 110 | true 111 | 112 | Vertical 113 | true 114 | 115 | 116 | 117 | 118 | <v8:item> 119 | <v8:lang>en</v8:lang> 120 | <v8:content>Tab 3 content 121 | 122 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ullam enim quia molestiae facilis laudantium voluptates obcaecati officia cum, sit libero commodi. Ratione illo suscipit temporibus sequi iure ad laboriosam accusamus? 123 | </v8:content> 124 | </v8:item> 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | cfg:DataProcessorObject.Swiper 138 | 139 | true 140 | 141 | 142 | -------------------------------------------------------------------------------- /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 |
Form
32 |
33 |
34 |
-------------------------------------------------------------------------------- /DataProcessors/TabbarIcons/Forms/Form.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 |
4 | 5 | Form 6 | 7 | 8 | en 9 | Form 10 | 11 | 12 | 13 | Managed 14 | false 15 | 16 | PlatformApplication 17 | MobilePlatformApplication 18 | 19 | Any 20 | 21 | 22 |
23 |
-------------------------------------------------------------------------------- /DataProcessors/TabbarIcons/Forms/Form/Ext/Form.xml: -------------------------------------------------------------------------------- 1 |  2 |
3 | DontBlock 4 | Vertical 5 | None 6 | false 7 | 8 | 9 | 10 | 11 | <v8:item> 12 | <v8:lang>en</v8:lang> 13 | <v8:content>Pages</v8:content> 14 | </v8:item> 15 | 16 | 17 | 18 | en 19 | Pages 20 | 21 | 22 | TabsOnBottom 23 | 24 | 25 | 26 | 27 | <v8:item> 28 | <v8:lang>en</v8:lang> 29 | <v8:content>Tab 1</v8:content> 30 | </v8:item> 31 | 32 | 33 | 34 | en 35 | Page1 36 | 37 | 38 | 39 | StdPicture.CreateFolder 40 | true 41 | 42 | Vertical 43 | true 44 | 45 | 46 | 47 | 48 | <v8:item> 49 | <v8:lang>en</v8:lang> 50 | <v8:content>Tab 1 content 51 | 52 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ullam enim quia molestiae facilis laudantium voluptates obcaecati officia cum, sit libero commodi. Ratione illo suscipit temporibus sequi iure ad laboriosam accusamus? 53 | 54 | Saepe explicabo voluptas ducimus provident, doloremque quo totam molestias! Suscipit blanditiis eaque exercitationem praesentium reprehenderit, fuga accusamus possimus sed, sint facilis ratione quod, qui dignissimos voluptas! Aliquam rerum consequuntur deleniti. 55 | 56 | Totam reprehenderit amet commodi ipsum nam provident doloremque possimus odio itaque, est animi culpa modi consequatur reiciendis corporis libero laudantium sed eveniet unde delectus a maiores nihil dolores? Natus, perferendis. 57 | 58 | Atque quis totam repellendus omnis alias magnam corrupti, possimus aspernatur perspiciatis quae provident consequatur minima doloremque blanditiis nihil maxime ducimus earum autem. Magni animi blanditiis similique iusto, repellat sed quisquam! 59 | 60 | Suscipit, facere quasi atque totam. Repudiandae facilis at optio atque, rem nam, natus ratione cum enim voluptatem suscipit veniam! Repellat, est debitis. Modi nam mollitia explicabo, unde aliquid impedit! Adipisci! 61 | 62 | Deserunt adipisci tempora asperiores, quo, nisi ex delectus vitae consectetur iste fugiat iusto dolorem autem. Itaque, ipsa voluptas, a assumenda rem, dolorum porro accusantium, officiis veniam nostrum cum cumque impedit. 63 | 64 | Laborum illum ipsa voluptatibus possimus nesciunt ex consequatur rem, natus ad praesentium rerum libero consectetur temporibus cupiditate atque aspernatur, eaque provident eligendi quaerat ea soluta doloremque. Iure fugit, minima facere.</v8:content> 65 | </v8:item> 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | <v8:item> 75 | <v8:lang>en</v8:lang> 76 | <v8:content>Tab 2</v8:content> 77 | </v8:item> 78 | 79 | 80 | 81 | en 82 | Page2 83 | 84 | 85 | 86 | StdPicture.DataCompositionGroupFieldsDisabled 87 | true 88 | 89 | Vertical 90 | true 91 | 92 | 93 | 94 | 95 | <v8:item> 96 | <v8:lang>en</v8:lang> 97 | <v8:content>Tab 2 content 98 | 99 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ullam enim quia molestiae facilis laudantium voluptates obcaecati officia cum, sit libero commodi. Ratione illo suscipit temporibus sequi iure ad laboriosam accusamus? 100 | 101 | Saepe explicabo voluptas ducimus provident, doloremque quo totam molestias! Suscipit blanditiis eaque exercitationem praesentium reprehenderit, fuga accusamus possimus sed, sint facilis ratione quod, qui dignissimos voluptas! Aliquam rerum consequuntur deleniti. 102 | 103 | Totam reprehenderit amet commodi ipsum nam provident doloremque possimus odio itaque, est animi culpa modi consequatur reiciendis corporis libero laudantium sed eveniet unde delectus a maiores nihil dolores? Natus, perferendis. 104 | 105 | Atque quis totam repellendus omnis alias magnam corrupti, possimus aspernatur perspiciatis quae provident consequatur minima doloremque blanditiis nihil maxime ducimus earum autem. Magni animi blanditiis similique iusto, repellat sed quisquam! 106 | 107 | Suscipit, facere quasi atque totam. Repudiandae facilis at optio atque, rem nam, natus ratione cum enim voluptatem suscipit veniam! Repellat, est debitis. Modi nam mollitia explicabo, unde aliquid impedit! Adipisci! 108 | 109 | Deserunt adipisci tempora asperiores, quo, nisi ex delectus vitae consectetur iste fugiat iusto dolorem autem. Itaque, ipsa voluptas, a assumenda rem, dolorum porro accusantium, officiis veniam nostrum cum cumque impedit. 110 | 111 | Laborum illum ipsa voluptatibus possimus nesciunt ex consequatur rem, natus ad praesentium rerum libero consectetur temporibus cupiditate atque aspernatur, eaque provident eligendi quaerat ea soluta doloremque. Iure fugit, minima facere.</v8:content> 112 | </v8:item> 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | <v8:item> 122 | <v8:lang>en</v8:lang> 123 | <v8:content>Tab 3</v8:content> 124 | </v8:item> 125 | 126 | 127 | 128 | en 129 | Page2 130 | 131 | 132 | 133 | StdPicture.GenerateReport 134 | true 135 | 136 | Vertical 137 | true 138 | 139 | 140 | 141 | 142 | <v8:item> 143 | <v8:lang>en</v8:lang> 144 | <v8:content>Tab 3 content 145 | 146 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ullam enim quia molestiae facilis laudantium voluptates obcaecati officia cum, sit libero commodi. Ratione illo suscipit temporibus sequi iure ad laboriosam accusamus? 147 | 148 | Saepe explicabo voluptas ducimus provident, doloremque quo totam molestias! Suscipit blanditiis eaque exercitationem praesentium reprehenderit, fuga accusamus possimus sed, sint facilis ratione quod, qui dignissimos voluptas! Aliquam rerum consequuntur deleniti. 149 | 150 | Totam reprehenderit amet commodi ipsum nam provident doloremque possimus odio itaque, est animi culpa modi consequatur reiciendis corporis libero laudantium sed eveniet unde delectus a maiores nihil dolores? Natus, perferendis. 151 | 152 | Atque quis totam repellendus omnis alias magnam corrupti, possimus aspernatur perspiciatis quae provident consequatur minima doloremque blanditiis nihil maxime ducimus earum autem. Magni animi blanditiis similique iusto, repellat sed quisquam! 153 | 154 | Suscipit, facere quasi atque totam. Repudiandae facilis at optio atque, rem nam, natus ratione cum enim voluptatem suscipit veniam! Repellat, est debitis. Modi nam mollitia explicabo, unde aliquid impedit! Adipisci! 155 | 156 | Deserunt adipisci tempora asperiores, quo, nisi ex delectus vitae consectetur iste fugiat iusto dolorem autem. Itaque, ipsa voluptas, a assumenda rem, dolorum porro accusantium, officiis veniam nostrum cum cumque impedit. 157 | 158 | Laborum illum ipsa voluptatibus possimus nesciunt ex consequatur rem, natus ad praesentium rerum libero consectetur temporibus cupiditate atque aspernatur, eaque provident eligendi quaerat ea soluta doloremque. Iure fugit, minima facere.</v8:content> 159 | </v8:item> 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | cfg:DataProcessorObject.TabbarIcons 173 | 174 | true 175 | 176 | 177 | 178 | 179 | 180 | <v8:item> 181 | <v8:lang>en</v8:lang> 182 | <v8:content>Tab 1</v8:content> 183 | </v8:item> 184 | 185 | 186 | 187 | en 188 | Tab1 189 | 190 | 191 | 192 | StdPicture.CalculationType 193 | true 194 | 195 | TextPicture 196 | 197 | 198 | 199 | <v8:item> 200 | <v8:lang>en</v8:lang> 201 | <v8:content>Tab 2</v8:content> 202 | </v8:item> 203 | 204 | 205 | 206 | en 207 | Tab1 208 | 209 | 210 | 211 | StdPicture.CollaborationSystemUser 212 | true 213 | 214 | TextPicture 215 | 216 | 217 | 218 | <v8:item> 219 | <v8:lang>en</v8:lang> 220 | <v8:content>Tab 3</v8:content> 221 | </v8:item> 222 | 223 | 224 | 225 | en 226 | Tab1 227 | 228 | 229 | 230 | StdPicture.Dendrogram 231 | true 232 | 233 | TextPicture 234 | 235 | 236 | -------------------------------------------------------------------------------- /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 |
Form
32 |
33 |
34 |
-------------------------------------------------------------------------------- /DataProcessors/Treeview/Forms/Form.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 |
4 | 5 | Form 6 | 7 | 8 | en 9 | Form 10 | 11 | 12 | 13 | Managed 14 | false 15 | 16 | PlatformApplication 17 | MobilePlatformApplication 18 | 19 | Any 20 | 21 | 22 |
23 |
-------------------------------------------------------------------------------- /DataProcessors/Treeview/Forms/Form/Ext/Form.xml: -------------------------------------------------------------------------------- 1 |  2 |
3 | DontBlock 4 | Vertical 5 | 6 | 7 | OnCreateAtServer 8 | 9 | 10 | 11 | 12 | <v8:item> 13 | <v8:lang>en</v8:lang> 14 | <v8:content>Basic tree view</v8:content> 15 | </v8:item> 16 | 17 | HorizontalIfPossible 18 | WeakSeparation 19 | 20 | 21 | 22 | Tree 23 | false 24 | Cell 25 | false 26 | true 27 | true 28 | true 29 | Data1 30 | 31 | 32 | 33 | 34 | 35 | Data1 36 | SearchStringRepresentation 37 | 38 | 39 | 40 | 41 | 42 | 43 | Data1 44 | ViewStatusRepresentation 45 | 46 | 47 | 48 | 49 | 50 | 51 | Data1 52 | SearchControl 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | Data1.Title 61 | EnterOnInput 62 | true 63 | true 64 | 65 | 66 | 67 | 68 | 69 |
70 |
71 |
72 |
73 | 74 | 75 | 76 | cfg:DataProcessorObject.Treeview 77 | 78 | true 79 | 80 | 81 | 82 | <v8:item> 83 | <v8:lang>en</v8:lang> 84 | <v8:content>Data1</v8:content> 85 | </v8:item> 86 | 87 | 88 | v8:ValueTree 89 | 90 | 91 | 92 | 93 | <v8:item> 94 | <v8:lang>en</v8:lang> 95 | <v8:content>Title</v8:content> 96 | </v8:item> 97 | 98 | 99 | xs:string 100 | 101 | 0 102 | Variable 103 | 104 | 105 | 106 | 107 | 108 | 109 | -------------------------------------------------------------------------------- /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 | [![](./docs/framework7.svg)](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 | 2 | 3 | 4 | 5 | 6 | --------------------------------------------------------------------------------