I want to use jQuery and create a tagging interface for users. Similar to how users in StackOverflow can add tags for the type of question they are asking. I'm getting it to work using jQuery and tagit ( http://jquery.webspirited.com/2011/02/jquery-tagit-a-jquery-tagging-plugin/). The problem is that say the user has an error in another part of the form and clicks submit, the form reloads with the error message and all the tags are gone. Is there a simplar way to get tagging in Django?
[EDIT]
Trying this based on Hailwood's response below...
<ul name="event_tag" class="tags">
<li class="tagit-choice" tagvalue="3">
Dog
<a class="tagit-close">x</a>
</li>
</ul>
However, when I load the page loads, that particular tag is not loaded? It seems like the ul tag is cleared and then there is other information loaded in it. I do not see it when I load the page.
I also tried as per below:
<ul name="event_tag" class="tags">
<li data-value="3">Dog</li>
</ul>
When I try this way, it appears for a second and then it disappears...
[EDIT 2]
Found the solution to my problem. As Hailwood suggested, programmatically we can create the li's as per below:
<ul name="event_tag" class="tags">
<li data-value="3">Dog</li>
</ul>
Reason it wasn't working for me was because I had for initial values:
$.getJSON("ajaxrequest.json", function(data) {
$(".tags").tagit("fill", data);
});
Problem for me was that onload, it was all disappearing. Reason for this is because of fill. When we replace fill with add as per: $(".tags").tagit("add", data);, then it works.
