Pagination issue (probably very simple) - Joomla! Forum - community, help and support
hello everyone.
i'm relatively new joomla please patient ;( .
i'm having issue component. i've set pagination on front-end view , works entirely should.
the problem dropdown box meant set 'limit' not seem submit form information. rendering useless. it's there, has "per page" options , everything, doesn't on change.
here's quick view of html generated joomla pagination:
it looks this.form.submit() isn't being performed. note there no form whatsoever on html page. , there no javascript libraries being loaded.
do of know doing wrong?
thank time.
i'm relatively new joomla please patient ;( .
i'm having issue component. i've set pagination on front-end view , works entirely should.
the problem dropdown box meant set 'limit' not seem submit form information. rendering useless. it's there, has "per page" options , everything, doesn't on change.
here's quick view of html generated joomla pagination:
code: select all
<div class="list-footer">
<div class="limit">
affichage #
<select id="limit" class="inputbox" onchange="this.form.submit()" size="1" name="limit">
<option value="5">5</option>
<option value="10">10</option>
<option value="15">15</option>
<option selected="selected" value="20">20</option>
<option value="25">25</option>
<option value="30">30</option>
<option value="50">50</option>
<option value="100">100</option>
<option value="0">tous</option>
</select>
</div>
<div class="counter"/>
<input type="hidden" value="0" name="limitstart"/>
</div>
it looks this.form.submit() isn't being performed. note there no form whatsoever on html page. , there no javascript libraries being loaded.
do of know doing wrong?
thank time.
hi,
it seems didnt write proper javascript form submit!
and should put select tag form tag.
for more information here:
http://www.w3schools.com/php/php_forms.asp
regards,
milad
it seems didnt write proper javascript form submit!
and should put select tag form tag.
for more information here:
http://www.w3schools.com/php/php_forms.asp
regards,
milad
Comments
Post a Comment