I am using Stripes and jQuery along with a generated jQuery UI theme. I want to embed a <stripes:form>
in a div, then style the <stripes:button>
for the submit with one of the icons from the theme.
This Works: (but obviously doesn't tie in to Stripes)
<button id="save" class="ui-state-default ui-corner-all">
<span class="ui-icon ui-icon-check"></span>
</button>
This Fails:
<stripes:button name="save" class="ui-state-default ui-corner-all">
<span class="ui-icon ui-icon-check"></span>
</stripes:button>
The failing one gives me a nicely styled button with the span tag as text.
Any suggestions? Is this even possible?