Gossamer Forum
Home : Products : Gossamer Links : Discussions :

multiple categories

Quote Reply
multiple categories
Hi,

Is there anyway of letting users select multiple categories in the add.cgi form? Also, when they modify, will these multiple categories show up? I don't mind if it's using ajax or simple.

cheers.

joey
Quote Reply
Re: [joeybone] multiple categories In reply to
In AJAX mode, edit the include_form.html template, you'll see:

Code:
var tc = new treecats({ <%-- selectionMode : 'multiple', --%> cgiURL : '<%config.db_cgi_url%>', cgiQueryString : '<%url_hidden%>', imageURL : '<%config.build_static_url%>/<%t%>/images' });

Just uncomment the selectionMode option (remove the <%-- and --%>).

Adrian