Bonjour ,
Lorsque je réalise le trie sur une collonne la première fois le lien de trie appelé est "javascript://nop" alors le trie est réaliser coté client aucun rechargement de la page le trie est assé rapide. Cependant la deuxième fois l'url de trie est la suivante "http://localhost:8180/<context>/<namespace>/list.action" le trie fonctionne bien cependant cela implique le rechargement de ma page et l'exécution de mon action ce qui est assez long. Si quelqu'un voit se qui cloche?

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
 
<ajax:displayTag id="displayTagFrame">
	<display:table name="lst" class="displaytag" pagesize="2"
		id="row" 
		cellpadding="0" cellspacing="0" requestURI="list_map.action" excludedParams="*">
		<display:column title="&nbsp;" sortable="false" headerClass="sortable">
 
		</display:column>
 
		<display:column property="nom" title="nom" sortable="true"
			headerClass="sortable" />
		<display:column property="prenom" title="prenom" sortable="true"
			headerClass="sortable" />
 
 
<display:setProperty name="paging.banner.placement" value="bottom" />
 
		<display:setProperty name="paging.banner.first">
			<![CDATA[
     										 ]]>
			<table cellpadding="0" cellspacing="0" width="100%"
				style="margin-top: 0px; margin-bottom: 0px; border-bottom: 1px solid #ccc; border-right: 1px solid #ccc; border-left: 1px solid #ccc;">
				<tr>
					<td align="center" width="100%" height="16px"
						style="font-size: 11px; font-weight: bold; font-family: Arial; background-color: #DFE8ED; vertical-align: middle;">
					<img border="0"
						src="<%=Constants.PATH_RESSOURCES_IMAGE %>/displaytag/prev_first_disabled.gif"
						style="vetical-align: bottom" /> &nbsp; <img border="0"
						src="<%=Constants.PATH_RESSOURCES_IMAGE %>/displaytag/prev_disabled.gif"
						style="vetical-align: bottom" /> &nbsp;{0} <img border="0"
						src="<%=Constants.PATH_RESSOURCES_IMAGE %>/displaytag/next.gif" /> &nbsp;<img
						border="0"
						src="<%=Constants.PATH_RESSOURCES_IMAGE %>/displaytag/next_last.gif" /></td>
				</tr>
			</table>
		</display:setProperty>
 
		<display:setProperty name="paging.banner.full">
			<![CDATA[
     										 ]]>
			<table cellpadding="0" cellspacing="0" width="100%"
				style="margin-top: 0px; margin-bottom: 0px;">
				<tr>
					<td align="center" width="100%" height="16px"
						style="font-size: 11px; font-weight: bold; font-family: Arial; background-color: #DFE8ED; vertical-align: middle;">
					<img border="0"
						src="<%=Constants.PATH_RESSOURCES_IMAGE %>/displaytag/prev_first.gif"
						style="vetical-align: bottom" /> &nbsp; <img border="0"
						src="<%=Constants.PATH_RESSOURCES_IMAGE %>/displaytag/prev.gif"
						style="vetical-align: bottom" /> &nbsp;{0} <img border="0"
						src="<%=Constants.PATH_RESSOURCES_IMAGE %>/displaytag/next.gif" /> &nbsp;<img
						border="0"
						src="<%=Constants.PATH_RESSOURCES_IMAGE %>/displaytag/next_last.gif" /></td>
				</tr>
			</table>
		</display:setProperty>
		<display:setProperty name="paging.banner.last">
			<![CDATA[
     										 ]]>
			<table cellpadding="0" cellspacing="0" width="100%"
				style="margin-top: 0px; margin-bottom: 0px;">
				<tr>
					<td align="center" width="100%" height="16px"
						style="font-size: 11px; font-weight: bold; font-family: Arial; background-color: #DFE8ED; vertical-align: middle;">
					<img border="0"
						src="<%=Constants.PATH_RESSOURCES_IMAGE %>/displaytag/prev_first.gif"
						style="vetical-align: bottom" /> &nbsp; <img border="0"
						src="<%=Constants.PATH_RESSOURCES_IMAGE %>/displaytag/prev.gif"
						style="vetical-align: bottom" /> &nbsp;{0} <img border="0"
						src="<%=Constants.PATH_RESSOURCES_IMAGE %>/displaytag/next_disabled.gif" />
					&nbsp;<img border="0"
						src="<%=Constants.PATH_RESSOURCES_IMAGE %>/displaytag/next_last_disabled.gif" />
 
					</td>
				</tr>
			</table>
		</display:setProperty>
	</display:table>
 
</ajax:displayTag>