Autocomplete enterprise name in profile edition. (Closes #836)
[platal.git] / templates / core / plwizard.tpl
CommitLineData
f118f685
FB
1{**************************************************************************}
2{* *}
179afa7f 3{* Copyright (C) 2003-2008 Polytechnique.org *}
f118f685
FB
4{* http://opensource.polytechnique.org/ *}
5{* *}
6{* This program is free software; you can redistribute it and/or modify *}
7{* it under the terms of the GNU General Public License as published by *}
8{* the Free Software Foundation; either version 2 of the License, or *}
9{* (at your option) any later version. *}
10{* *}
11{* This program is distributed in the hope that it will be useful, *}
12{* but WITHOUT ANY WARRANTY; without even the implied warranty of *}
13{* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *}
14{* GNU General Public License for more details. *}
15{* *}
16{* You should have received a copy of the GNU General Public License *}
17{* along with this program; if not, write to the Free Software *}
18{* Foundation, Inc., *}
19{* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *}
20{* *}
21{**************************************************************************}
ddb64990 22{javascript name="jquery"}
16594a1a
FB
23{javascript name="jquery.autocomplete"}
24
ddb64990
FB
25<script type="text/javascript">//<![CDATA[
26 {if ($stateless || $id gt $current) && $wiz_ajax}
27 {literal}
28 function changePage(obj, id)
29 {
30 var myUrl = obj.href;
31 $.ajax({ url: myUrl + "/ajax",
32 global: false,
33 dataTye: 'html',
34 error: function(request, error) {
35 document.location = myUrl;
36 },
37 success: function(data) {
84a73c34
FB
38 if (is_IE) {
39 $(".wiz_tab").removeClass("active");
40 $("#wiz_tab_" + id).addClass("active");
41 $(".wiz_content").html(data);
42 if (typeof wizPage_onLoad == 'function') {
43 wizPage_onLoad(id);
44 }
45 auto_links();
46 } else {
47 $(".wiz_content").fadeOut('normal',
48 function() {
49 $(".wiz_tab").removeClass("active");
50 $("#wiz_tab_" + id).addClass("active");
51 $(".wiz_content").html(data).fadeIn('normal');
52 if (typeof wizPage_onLoad == 'function') {
53 wizPage_onLoad(id);
54 }
55 auto_links();
56 });
57 }
ddb64990
FB
58 }
59 });
60 return false;
61 }
62 {/literal}
63 {else}
64 {literal}
65 function changePage(obj)
66 {
67 return true;
68 }
69 {/literal}
70 {/if}
71//]]></script>
f118f685
FB
72
73<div class="wizard" style="clear: both">
74 <div class="wiz_header">
75 {foreach from=$pages item=title key=id}
908db125
FB
76 {if $stateless || $id gt $current}
77 {assign var=tag value="a"}
78 {else}
79 {assign var=tag value="div"}
80 {/if}
81 <{$tag} class="wiz_tab {if $id eq $current}active{/if} {if !$stateless && $current gt $id}grayed{/if}"
82 style="display: block; float: left; width: {$tab_width}%; vertical-align: middle"
83 id="wiz_tab_{$lookup[$id]}"
84 {if $tag eq "a"}
85 href="{$wiz_baseurl}/{$lookup[$id]}"
86 onclick="return changePage(this, '{$lookup[$id]}')"
87 {/if}
88 >
89 <span style="vertical-align: middle">{$title}</span>
90 </{$tag}>
f118f685
FB
91 {/foreach}
92 <div style="clear: both"></div>
93 </div>
0b14f91d 94 <div class="wiz_content" style="clear: both">
93553cea
FB
95 {foreach from=$xorg_errors item=err}
96 <div class="erreur">{$err|smarty:nodefaults}</div>
97 {/foreach}
f118f685
FB
98 {include file=$wiz_page}
99 </div>
100</div>
101
84a73c34
FB
102<script type="text/javascript">
103{literal}
104if (typeof wizPage_onLoad == 'function') {
105 wizPage_onLoad({/literal}'{$lookup[$current]}'{literal});
106}
107{/literal}
108</script>
109
f118f685 110{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}