I'm currently in the process of making an iPhone-optimized version of
my site and I've run into an issue with wrapping elements in a form.
Currently, I have the action button in the toolbar linking to a filter
page that links to an unordered list of filter options, which then
each individually link to their respective filters. The UI all works
fine without the form, but once I wrap all these fragments in a form
as to allow the user to set multiple filters and then click to filter
their search it instead prints out all of the fragments at once. The
code in question:
%form{...}
%ul{ :id => "filters"}
%li
%a{ :href => "#priceFilter" }
....
%ul{ :id => "priceFilters"}
Instead of just rendering the filters list and then rendering the
priceFilters when the user clicks on that cell, it loads the filters
list as well as all the filters at once. Anyone know a solution to
this problem?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"iPhoneWebDev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/iphonewebdev?hl=en
-~----------~----~----~----~------~----~------~--~---