-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
156 lines (141 loc) · 5.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!doctype html>
<html lang="en-US">
<head>
<!-- Meta info -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Infor CRM Mobile</title>
<link rel="icon" type="image/png" href="img/icon.png" />
<!-- Soho Styles -->
<link rel="stylesheet" id="stylesheet" href="css/grey-theme.css" type="text/css">
<link rel="stylesheet" id="stylesheet" href="css/site.css" type="text/css">
<!-- jQuery and Plugin Code -->
<script src="js/jquery-3.1.0.min.js"></script>
<script src="js/sohoxi.js"></script>
</head>
<body class="no-scroll">
<nav id="application-menu" class="application-menu show-shadow is-open" data-open-on-large="true" data-breakpoint="desktop" style="height: 100%;">
<div class="accordion panel inverse has-icons" data-options="{allowOnePane: true}">
<div class="accordion-header hide-focus" role="presentation">
<a href="./" aria-haspopup="true" role="button" aria-expanded="false">
<img class="icon" focusable="false" aria-hidden="true" role="presentation" src="img/logo.png"></img>
<span>Infor Mobile Platform</span>
</a>
</div>
<!-- API Docs -->
<div class="accordion-header hide-focus has-chevron is-selected" role="presentation">
<a href="#" aria-haspopup="true" role="button" aria-expanded="true">
<span>API Docs</span>
</a>
</div>
<div class="accordion-pane is-expanded">
<div class="accordion-header hide-focus no-icon" role="presentation">
<a href="v2.2/index.html">
<span>v2.2</span>
</a>
</div>
<div class="accordion-header hide-focus no-icon" role="presentation">
<a href="v3.0/index.html">
<span>v3.0</span>
</a>
</div>
<div class="accordion-header hide-focus no-icon" role="presentation">
<a href="v3.1/index.html">
<span>v3.1</span>
</a>
</div>
<div class="accordion-header hide-focus no-icon" role="presentation">
<a href="v3.2/index.html">
<span>v3.2</span>
</a>
</div>
<div class="accordion-header hide-focus no-icon" role="presentation">
<a href="v3.3/index.html">
<span>v3.3</span>
</a>
</div>
<div class="accordion-header hide-focus no-icon" role="presentation">
<a href="v3.4/index.html">
<span>v3.4</span>
</a>
</div>
<div class="accordion-header hide-focus no-icon" role="presentation">
<a href="development/index.html">
<span>v3.5</span>
</a>
</div>
<div class="accordion-header hide-focus no-icon" role="presentation">
<a href="v4.0/index.html">
<span>v4.0</span>
</a>
</div>
<div class="accordion-header hide-focus no-icon" role="presentation">
<a href="v4.1/index.html">
<span>v4.1</span>
</a>
</div>
<div class="accordion-header hide-focus no-icon" role="presentation">
<a href="v4.2/index.html">
<span>v4.2 (Development)</span>
</a>
</div>
</div>
<!-- Releases -->
<div class="accordion-header hide-focus has-chevron" role="presentation">
<a href="https://github.com/Saleslogix/argos-saleslogix/releases" aria-haspopup="true" role="button" aria-expanded="false">
<span>Releases</span>
</a>
</div>
</div>
</nav>
<div class="page-container scrollable">
<header class="header azure07" data-options="{addScrollClass: true}">
<div class="toolbar" role="toolbar" aria-label="Layouts">
<div class="title">
<button class="btn-icon application-menu-trigger hide-focus" type="button" tabindex="0">
<span class="audible">Show navigation</span>
<span class="icon app-header">
<span class="one"></span>
<span class="two"></span>
<span class="three"></span>
</span>
</button>
</div>
</div>
</header>
<div class="page-container scrollable component">
<div class="editorial component">
<div id="maincontent" class="main" role="main">
<div class="content">
<h2>Infor CRM Mobile Platform</h2>
<p>
Infor CRM mobile, codenamed "argos" started in June of 2010. The entire suite of "argos" projects are open source and hosted on Github. The platform consists of an SDK (argos-sdk) and a core application (argos-saleslogix). The SDK allows for extensive
customizations so developers can extend and override without being forced to create an entirely new application.
Here is a high level overview of what comes in the SDK:
</p>
<ul>
<li>Templating</li>
<li>Theming, powered by LESS</li>
<li>Localization</li>
<li>UI Elements such as Calendar, Toolbars, Lookups, Date, Duration, and more</li>
<li>Validation</li>
<li>Access to entire Dojo Toolkit library</li>
<li>Customizations can be easily added</li>
<li>Minification scripts</li>
<li>Documentation scripts</li>
<li>Views bound to <a href="http://dojotoolkit.org/reference-guide/1.9/dojo/store.html" target="_blank">dojo store API</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<script>
// Init All SoHo XI Controls Stuff on Document Ready
$(function() {
$('body').initialize('en-US');
});
</script>
</body>
</html>