13693261870
2022-09-16 354b3dbfbffb3df45212a2a44dbbf48b4acc2594
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title>JsonP Writer Example</title>
    <link rel="stylesheet" type="text/css" href="../shared/example.css" />
    <link rel="stylesheet" type="text/css" href="writer.css" />
 
    <!-- GC -->
 
    <script type="text/javascript" src="../../examples/shared/include-ext.js"></script>
    <script type="text/javascript" src="../../examples/shared/options-toolbar.js"></script>
    <script type="text/javascript" src="../shared/examples.js"></script>
 
    <script type="text/javascript" src="writer-jsonp.js"></script>
</head>
<body>
<h1>Ext.data.writer.Writer JsonP Example</h1>
<p>This example shows how to implement a Writer for your Store.  A Writer-enabled Store frees you from having to manually compose Ajax requests
to perform CRUD actions on a Store.</p>
<p>Note that the js is not minified so it is readable. See <a href="writer.js">writer.js</a>.
    
<p>This example uses a JsonP proxy which would enable cross-domain operation.</p>
 
<p>The JsonP proxy plugged into the store in this example uses the <em>api</em> configuration instead of a <em>url</em>.
A simple MVC-like php backend has been created for this example which simulates a database by storing records in $_SESSION.  See the file /remote/app/controllers/users.php.  You may have to configure
your web-server to allow scripts to be executed in the /examples directory.</p>
 
<p>Take note of the requests being generated in Firebug as you interact with the Grid and Form.</p>
 
<p>An <b>Error has been simulated</b> on the server-side:  Attempting to update a record having <b>ODD</b>-numbered id will generate this errror.
Responses from the update action will have successProperty === false along with a message.  This error can be handled by
listening to the <b>"exception"</b> event upon your proxy.</p>
 
</body>
</html>