How about creating hidden input nodes inside a form for each li node you create? For example, add after your dojo.create:
dojo.create("input", {name: "values[]", type: "hidden", value: array[i]}, dojo.byId("myForm")); _Nik On 5/11/2012 2:37 PM, voss wrote: > Hello, > > I have a list that is created dynamically, and the code looks like: > > <script type="text/javascript"> > ... > ... > for (i=0; i<array.length; i++) > { > dojo.create("li", {innerHTML: array[i]}, dojo.byId("test")); > { > </script> > > <body> > <ul id="test"></ul> > </body> > > How to pass the list values (i.e.,array[]) to views for further work? > > Thanks! -- > You received this message because you are subscribed to the Google > Groups "Django users" group. > To view this discussion on the web visit > https://groups.google.com/d/msg/django-users/-/IHfsfNwhhR8J. > To post to this group, send email to django-users@googlegroups.com. > To unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.