jsf - <h:selectManyListbox><f:ajax listener render> doesn't work when using jQuery Multiple Select plugin -


i try integrate jquery plugin display multiple select dropdown checkboxes. code:

<h:selectmanylistbox id="multiplecolor" value="#{searchbean.color}" size="1" immediate="true" class="multiplecolor" style="width:200px;">          <f:ajax render=":menuform :searchform:searchbutton" listener="#{menubean.focus(menubean.mysearch)}" />          <f:ajax listener="#{searchbean.count()}" />          <f:selectitems value="#{searchbean.colorlist}" var="color" itemvalue="#{color}" itemlabel="#{searchbean.getcolortext(color)}" />       </h:selectmanylistbox> 

with js code:

<script type="text/javascript">    $(".multiplecolor").multipleselect({        width: 200,        multiple: false,        multiplewidth: 460    }); 

the dropdown working, listener , renderer don't.

can me that?


Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -