Skip to content
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.

url of form is miscalculated #1923

Closed
anho opened this issue Jun 24, 2011 · 3 comments
Closed

url of form is miscalculated #1923

anho opened this issue Jun 24, 2011 · 3 comments
Assignees

Comments

@anho
Copy link

anho commented Jun 24, 2011

Being on a page with the url 'http://sub.domain.tld/account/login' and having a form-element

<form method="post" id="form_login">

results in a call to '/account/undefined'.

@anho
Copy link
Author

anho commented Jun 24, 2011

Adding <form action="/account/login"> helps, but gives me http://sub.domain.tld/account/login#/account/login in location bar. Should be http://sub.domain.tld/account/login#/tasks/list because of a redirect.

@jblas
Copy link
Contributor

jblas commented Jun 24, 2011

@h-andreas

FYI I have a fix for the undefined problem. I'll check it in once I finish writing the unit tests for it.

Regarding your issue with the redirect ... we can't tell when a redirect happens because the browser only calls us back AFTER the redirect has happened so we have no clue that one occurred. That said we've been telling folks to place a data-url="/tasks/list" on their page element in the results.

You can read more about it here:

http://jquerymobile.com/test/#/test/docs/pages/docs-navmodel.html

@ghost ghost assigned jblas Jun 24, 2011
jblas added a commit that referenced this issue Jun 27, 2011
	- Added code to calculate whether to choose the documentUrl or the page Url in the case where an action is not specified on a form element.

	- Fixed bug in the navigation "submit" handler where an error was being thrown if "type" was not specified.

	- Fixed typo "diabled" id typos in tests/unit/navigation/index.html.

	- Added tests for form submissions with no action in both base and non-base specified cases.
@jblas
Copy link
Contributor

jblas commented Jun 27, 2011

The fix for the action attribute not being specified has landed on the HEAD:

0d65a0d

@h-andreas

@jblas jblas closed this as completed Jun 27, 2011
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants