FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Force.com-JavaScript-REST-Toolkit/mobile.html at master · developerforce/Force.com-JavaScript-REST-Toolkit · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Jan 10, 2024. It is now read-only.
developerforce
/
Force.com-JavaScript-REST-Toolkit
Public archive
Notifications
You must be signed in to change notification settings
Fork
169
Star
316
Code
Issues
21
Pull requests
18
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Force.com-JavaScript-REST-Toolkit
/
mobile.html
Copy path
More file actions
More file actions
Latest commit
History
History
History
182 lines (168 loc) · 6.37 KB
Breadcrumbs
Force.com-JavaScript-REST-Toolkit
/
mobile.html
Copy path
File metadata and controls
182 lines (168 loc) · 6.37 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!DOCTYPE html
>
<!--
Copyright (c) 2011, salesforce.com, inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided
that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this list of conditions and the
following disclaimer.
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and
the following disclaimer in the documentation and/or other materials provided with the distribution.
Neither the name of salesforce.com, inc. nor the names of its contributors may be used to endorse or
promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
-->
<!--
Sample HTML page showing use of Force.com JavaScript REST Toolkit from
an HTML5 mobile app using jQuery Mobile
-->
<
html
>
<
head
>
<
title
>
Accounts
</
title
>
<
meta
http-equiv
="
Content-Type
"
content
="
text/html; charset=UTF-8
"
/>
<!--
For development, you may want to load jQuery/jQuery Mobile from their CDN.
-->
<
link
rel
="
stylesheet
"
href
="
http://code.jquery.com/mobile/1.0a4/jquery.mobile-1.0a4.min.css
"
/>
<
script
type
="
text/javascript
"
src
="
http://code.jquery.com/jquery-1.5.2.min.js
"
>
</
script
>
<!--
From jQuery-swip - http://code.google.com/p/jquery-swip/source/browse/trunk/jquery.popupWindow.js
-->
<
script
type
="
text/javascript
"
src
="
static/jquery.popup.js
"
>
</
script
>
<
script
type
="
text/javascript
"
src
="
http://code.jquery.com/mobile/1.0a4/jquery.mobile-1.0a4.min.js
"
>
</
script
>
<
script
type
="
text/javascript
"
src
="
forcetk.js
"
>
</
script
>
<
script
type
="
text/javascript
"
src
="
mobileapp.js
"
>
</
script
>
<
script
type
="
text/javascript
"
>
// OAuth Configuration
var
loginUrl
=
'https://login.salesforce.com/'
;
var
clientId
=
'3MVG9Km_cBLhsuPzTtcGHsZpj9FUvuQFAwccGnIozI2uV_.bet9.FyQ6Zdq86oJNkH53YnqhFGaiYE1r.FCS3'
;
var
redirectUri
=
'https://localhost/jsapp/oauthcallback.html'
;
var
proxyUrl
=
'https://localhost/jsapp/proxy.php?mode=native'
;
// We'll get an instance of the REST API client in a callback after we do
// OAuth
var
client
=
new
forcetk
.
Client
(
clientId
,
loginUrl
,
proxyUrl
)
;
;
$
(
document
)
.
ready
(
function
(
)
{
$
(
'#login'
)
.
popupWindow
(
{
windowURL
:
getAuthorizeUrl
(
loginUrl
,
clientId
,
redirectUri
)
,
windowName
:
'Connect'
,
centerBrowser
:
1
,
height
:
480
,
width
:
320
}
)
;
}
)
;
function
getAuthorizeUrl
(
loginUrl
,
clientId
,
redirectUri
)
{
return
loginUrl
+
'services/oauth2/authorize?display=touch'
+
'&response_type=token&client_id='
+
escape
(
clientId
)
+
'&redirect_uri='
+
escape
(
redirectUri
)
;
}
function
sessionCallback
(
oauthResponse
)
{
if
(
typeof
oauthResponse
===
'undefined'
||
typeof
oauthResponse
[
'access_token'
]
===
'undefined'
)
{
errorCallback
(
{
status
:
0
,
statusText
:
'Unauthorized'
,
responseText
:
'No OAuth response'
}
)
;
}
else
{
client
.
setSessionToken
(
oauthResponse
.
access_token
,
null
,
oauthResponse
.
instance_url
)
;
addClickListeners
(
)
;
$
.
mobile
.
changePage
(
'#mainpage'
,
"slide"
,
false
,
true
)
;
$
.
mobile
.
pageLoading
(
)
;
getAccounts
(
function
(
)
{
$
.
mobile
.
pageLoading
(
true
)
;
}
)
;
}
}
</
script
>
</
head
>
<
body
>
<
div
data-role
="
page
"
data-theme
="
b
"
id
="
loginpage
"
>
<
div
data-role
="
header
"
>
<
h1
>
Login
</
h1
>
</
div
>
<
div
data-role
="
content
"
>
<
form
>
<
button
data-role
="
button
"
id
="
login
"
>
Login
</
button
>
</
form
>
</
div
>
<
div
data-role
="
footer
"
>
<
h4
>
Force.com
</
h4
>
</
div
>
</
div
>
<
div
data-role
="
page
"
data-theme
="
b
"
id
="
mainpage
"
>
<
div
data-role
="
header
"
>
<
h1
>
Account List
</
h1
>
</
div
>
<
div
data-role
="
content
"
>
<
form
>
<
button
data-role
="
button
"
id
="
newbtn
"
>
New
</
button
>
</
form
>
<
ul
id
="
accountlist
"
data-inset
="
true
"
data-role
="
listview
"
data-theme
="
c
"
data-dividertheme
="
b
"
>
</
ul
>
</
div
>
<
div
data-role
="
footer
"
>
<
h4
>
Force.com
</
h4
>
</
div
>
</
div
>
<
div
data-role
="
page
"
data-theme
="
b
"
id
="
detailpage
"
>
<
div
data-role
="
header
"
>
<
h1
>
Account Detail
</
h1
>
</
div
>
<
div
data-role
="
content
"
>
<
table
>
<
tr
>
<
td
>
Account Name:
</
td
>
<
td
id
="
Name
"
>
</
td
>
</
tr
>
<
tr
>
<
td
>
Industry:
</
td
>
<
td
id
="
Industry
"
>
</
td
>
</
tr
>
<
tr
>
<
td
>
Ticker Symbol:
</
td
>
<
td
id
="
TickerSymbol
"
>
</
td
>
</
tr
>
</
table
>
<
form
name
="
accountdetail
"
id
="
accountdetail
"
>
<
input
type
="
hidden
"
name
="
Id
"
id
="
Id
"
/>
<
button
data-role
="
button
"
id
="
editbtn
"
>
Edit
</
button
>
<
button
data-role
="
button
"
id
="
deletebtn
"
data-icon
="
delete
"
data-theme
="
e
"
>
Delete
</
button
>
</
form
>
</
div
>
<
div
data-role
="
footer
"
>
<
h4
>
Force.com
</
h4
>
</
div
>
</
div
>
<
div
data-role
="
page
"
data-theme
="
b
"
id
="
editpage
"
>
<
div
data-role
="
header
"
>
<
h1
id
="
accformheader
"
>
New Account
</
h1
>
</
div
>
<
div
data-role
="
content
"
>
<
form
name
="
accountform
"
id
="
accountform
"
>
<
input
type
="
hidden
"
name
="
Id
"
id
="
Id
"
/>
<
table
>
<
tr
>
<
td
>
Account Name:
</
td
>
<
td
>
<
input
name
="
Name
"
id
="
Name
"
data-theme
="
c
"
/>
</
td
>
</
tr
>
<
tr
>
<
td
>
Industry:
</
td
>
<
td
>
<
input
name
="
Industry
"
id
="
Industry
"
data-theme
="
c
"
/>
</
td
>
</
tr
>
<
tr
>
<
td
>
Ticker Symbol:
</
td
>
<
td
>
<
input
name
="
TickerSymbol
"
id
="
TickerSymbol
"
data-theme
="
c
"
/>
</
td
>
</
tr
>
</
table
>
<
button
data-role
="
button
"
id
="
actionbtn
"
>
Action
</
button
>
</
form
>
</
div
>
<
div
data-role
="
footer
"
>
<
h4
>
Force.com
</
h4
>
</
div
>
</
div
>
</
body
>
</
html
>
Back
|
FazBrowse Home
|
New Git URL