README superseded by README.markdown
[mkws-moved-to-github.git] / examples / htdocs / index-popup.html
1 <html>
2   <head>
3     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
4     <title>MKWS demo: popup search box</title>
5     <link rel="stylesheet" href="http://mkws.indexdata.com/mkwsStyle.css" />
6     <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
7
8     <script type="text/javascript">
9       mkws_config = { switch_menu: false, lang_menu: false, query_width: 40 };
10     </script>
11     <!-- <script type="text/javascript" src="http://mkws.indexdata.com/mkws-complete.js"></script> -->
12     <script type="text/javascript" src="http://code.jquery.com/jquery-1.10.0.min.js"></script>
13     <script type="text/javascript" src="http://mkws.indexdata.com/libjs-pz2/pz2api.1.js"></script>
14     <script type="text/javascript" src="http://mkws.indexdata.com/mkws.js"></script>
15
16     <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
17
18     <style>
19       body { font-size: 62.5%; }
20       label, input { display:block; }
21       input.text { margin-bottom:12px; width:95%; padding: .4em; }
22       fieldset { padding:0; border:0; margin-top:25px; }
23       h1 { font-size: 1.2em; margin: .6em 0; }
24       div#users-contain { width: 350px; margin: 20px 0; }
25       div#users-contain table { margin: 1em 0; border-collapse: collapse; width: 100%; }
26       div#users-contain table td, div#users-contain table th { border: 1px solid #eee; padding: .6em 10px; text-align: left; }
27       .ui-dialog .ui-state-error { padding: .3em; }
28       .validateTips { border: 1px solid transparent; padding: 0.3em; }
29     </style>
30
31     <script>
32     $(function() {
33       $( "#dialog-form" ).dialog({
34         closeOnEscape: true,
35         autoOpen: false,
36         height: 600,
37         width: 740,
38         modal: true,
39         resizable: true,
40         buttons: {
41                 Cancel: function() {
42                         $( this ).dialog( "close" );
43                 }
44         },
45         close: function() {
46                 // allFields.val( "" ).removeClass( "ui-state-error" );
47         }
48       });
49
50       $( "#create-user" )
51         .button()
52         .click(function() {
53                 $( "#dialog-form" ).dialog( "open" );
54         });
55     });
56     </script>
57   </head>
58   <body>
59
60   <div id="dialog-form" title="Search Box">
61     <script type="text/javascript">
62       jQuery.pazpar2();
63     </script>
64   </div>
65
66   <div id="users-contain" class="ui-widget"></div>
67
68   <button id="create-user">Open Search Box</button>
69
70   </body>
71 </html>
72