<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=utf-8">
<META content="MSHTML 6.00.6000.16674" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT size=2>Hi</FONT></DIV>
<DIV><FONT size=2>can you verify you have all the .js files included in your 
page ?</FONT></DIV>
<DIV><FONT size=2>simply do a "view source" in your browser and search for the 
Search.ajax.js file.</FONT></DIV>
<DIV><FONT size=2>also, you can add a simlpe "alert('test')" in the 
buildPostRequest function in AjaxPlugins.Search.Actions.DoIt , so you can see if 
that function is effectively called or not</FONT></DIV>
<DIV><FONT size=2></FONT>&nbsp;</DIV>
<DIV><FONT size=2>regards</FONT></DIV>
<DIV><FONT size=2>Oliver</FONT></DIV>
<BLOCKQUOTE 
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
  <DIV style="FONT: 10pt arial">----- Original Message ----- </DIV>
  <DIV 
  style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>From:</B> 
  <A title=chastagnol.claire@wanadoo.fr 
  href="mailto:chastagnol.claire@wanadoo.fr">Claire Chastagnol</A> </DIV>
  <DIV style="FONT: 10pt arial"><B>To:</B> <A 
  title=cartoweb-users@lists.maptools.org 
  href="mailto:cartoweb-users@lists.maptools.org">cartoweb-users@lists.maptools.org</A> 
  </DIV>
  <DIV style="FONT: 10pt arial"><B>Sent:</B> Thursday, July 31, 2008 9:20 
  AM</DIV>
  <DIV style="FONT: 10pt arial"><B>Subject:</B> [Cartoweb-users] problems with 
  the plugin search</DIV>
  <DIV><BR></DIV>
  <P>Hi everybody,<BR><BR>I have a new problem with an other plugin : the plugin 
  search!!<BR><BR>I have loaded the plugin on the server and on the client side. 
  I have edited the search.ini file,&nbsp;the search.tpl, the search_results.tpl 
  and the search.ajax.js, like in the documentation. I have also modified the 
  cartoclient.tpl.<BR>The&nbsp;"search" button appears in my page with the field 
  to search in, but nothing happens when I click on the button.<BR><BR>What 
  could be the problem? It seems the .js file is doing nothing, is there a 
  problem in it??<BR><BR>Here are some extracts of my 
  files:<BR><BR>search.tpl:<BR><BR>...<BR>&lt;p&gt;<BR>&nbsp; &lt;input 
  type="submit" value="{t}Search{/t}" 
  class="form_button"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  onclick="javascript: CartoWeb.trigger('Search.DoIt'); return 
  false;"/&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp; &lt;input type="hidden" 
  id="search_config" name="search_config" value="evenements"/&gt;<BR>&nbsp; 
  &lt;input type="hidden" id="search_sort_column" name="search_sort_column" 
  value="type_ev" /&gt;<BR>&nbsp; &lt;input type="hidden" 
  id="search_sort_direction" name="search_sort_direction" value="asc" 
  /&gt;<BR>&nbsp; &lt;input type="hidden" id="search_number" 
  name="search_number" /&gt;<BR>&nbsp; &lt;input type="hidden" id="search_page" 
  name="search_page" /&gt;<BR>&nbsp;<BR>&nbsp;&lt;div 
  id="search_results_div"&gt;&lt;/div&gt;<BR>&lt;/p&gt;<BR>...<BR><BR>Search.ajax.je:<BR>AjaxPlugins.Search 
  = {<BR>&nbsp; <BR>&nbsp;&nbsp;&nbsp; handleResponse: function(pluginOutput) 
  {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if 
  (pluginOutput.htmlCode.evenements)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  $('search_results_div').innerHTML = pluginOutput.htmlCode.evenements;</P>
  <P>&nbsp;&nbsp;&nbsp; }&nbsp; <BR>};</P>
  <P><BR>/*<BR>&nbsp;* Search plugin's 
  Actions<BR>&nbsp;*/<BR>&nbsp;<BR>AjaxPlugins.Search.Actions = {};</P>
  <P>AjaxPlugins.Search.Actions.DoIt = {</P>
  <P>&nbsp;&nbsp;&nbsp; buildPostRequest: function(argObject) 
  {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return 
  AjaxHandler.buildPostRequest();<BR>&nbsp;&nbsp;&nbsp; }<BR>};</P>
  <P>function order(column) {<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; 
  <BR>&nbsp;&nbsp;&nbsp; if (column != $('search_sort_column').value) 
  {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $('search_sort.column').value 
  = column;<BR>&nbsp;&nbsp;$('search_sort.direction').value = 
  'asc';<BR>&nbsp;&nbsp;&nbsp; } else {<BR>&nbsp;&nbsp;if 
  $('search_sort.direction').value == 
  'asc'{<BR>&nbsp;&nbsp;$('search_sort.direction').value == 
  'desc';<BR>&nbsp;&nbsp;} else 
  {<BR>&nbsp;&nbsp;&nbsp;$('search_sort.direction').value = 
  'asc';<BR>&nbsp;&nbsp;&nbsp;}<BR>&nbsp;&nbsp;}<BR>&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp; 
  CartoWeb.trigger('Search.DoIt');<BR>}</P><BR>
  <P>function recenter(id) {</P>
  <P>&nbsp;if ($('search_config').value == 
  'evenements'{<BR>&nbsp;<BR>&nbsp;&nbsp;$('id_recenter_ids').value = 
  gid;<BR>&nbsp;&nbsp;$('id_recenter_layer').value = $('search_config').value; 
  <BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; 
  CartoWeb.trigger('Location.Recenter');<BR>&nbsp;}<BR>}</P>
  <P>&nbsp;&nbsp;&nbsp; function search(config) {<BR>&nbsp;&nbsp;&nbsp; 
  <BR>&nbsp;&nbsp;&nbsp; $('search_config').value = 
  config;<BR>&nbsp;&nbsp;&nbsp; if (config == 'evenements') 
  {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $('search_number').value = 
  10;<BR>&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; 
  CartoWeb.trigger('Search.DoIt');<BR>&nbsp;}<BR>&nbsp;<BR><BR>Thank 
  you!!!!!!<BR>Claire</P>
  <P>
  <HR>

  <P></P>_______________________________________________<BR>Cartoweb-users 
  mailing 
  list<BR>Cartoweb-users@lists.maptools.org<BR>http://lists.maptools.org/mailman/listinfo/cartoweb-users<BR></BLOCKQUOTE></BODY></HTML>