Issue Type: Bug Bug
Affects Versions: current
Assignee: Unassigned
Components: core
Created: 25/Jun/13 7:17 PM
Description:

Using f:entry with f:repeatable on index.jelly for root-action creates _javascript_ Error:

This works:

<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form" xmlns:l="/lib/layout">
	<l:layout>
		<l:main-panel>
			<f:form method="post" name="submit" action="" class="code-quote">"submit">
				<f:repeatable var="pattern" items="${it.patterns}">
					<f:textbox />
				</f:repeatable>
				<f:submit />
			</f:form>
		</l:main-panel>
	</l:layout>
</j:jelly>

but this:

<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form" xmlns:l="/lib/layout">
	<l:layout>
		<l:main-panel>
			<f:form method="post" name="submit" action="" class="code-quote">"submit">
				<f:repeatable var="pattern" items="${it.patterns}">
					<f:entry>
						<f:textbox />
					</f:entry>
				</f:repeatable>
				<f:entry>
					<f:submit />
				</f:entry>
			</f:form>
		</l:main-panel>
	</l:layout>
</j:jelly>

Creates _javascript_ Error that breaks the page with:

"Uncaught TypeError: Cannot call method 'hasClassName' of undefined" in repeatable.js line 112.

Project: Jenkins
Priority: Blocker Blocker
Reporter: Magnus Sandberg
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira

--
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Reply via email to