-
Notifications
You must be signed in to change notification settings - Fork 483
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NoJS, allow forms to work with JavaScript turned off #54
Comments
Nice feature 👍 |
Good call Pat 👍 |
For the submit event on the server, what would be necessary for that option? Would it be desired to plug in routing the action URI, or the user configuring the URI used for the action attribute? Also what are the thoughts on how to determine if markup only is to be sent down? That seems like a problem perhaps separate from this in particular, and may be a larger issue than just involving forms. |
This feature was placed on the shelf soon after I started it. A client needs this feature so I'll be working on this again in March (moving to P2 from P3). With the compiler refactors done since the initial version it may be easier to get it working |
@gdi2290 We also require this feature for a large-scale project, and wondered how successful you were in implementing this for your client? I realise this feature is tagged with P2 and there is no milestone set, but in terms of viability, is there any expectation on when this might land? |
@gdi2290 Is there a pull request or repo for this work you started? I work on a gov.uk project and we would like to contribute. |
I thought this was supposed to be one of the reasons for server side rendering in a2. Many government entities need this and some companies are strict and allow very little or no XMLHTTP request. |
There is a large revamp / restructuring of Universal going on, but this is definitely a tough but important thing to have working (as you said for government etc agencies). We might have to wait for the restructuring before continuing on with this, but I'll try to help as well to get this going. @scarlz @jamesbirrellgray @thomasmeadows |
@MarkPieszak thank you, let me know if we can help in anyway :-) |
won't be supported officially |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
The app needs to be able to work with JavaScript turned off. This is to allow older browsers (legacy) to function or large enterprise companies with crazy restrictions. Currently the links should be able to work with no problem. formDirectives(server)
this is done via
action
attribute in the<form>
tag which makes a post request<form>
tags withaction
andmethod
attributesThe text was updated successfully, but these errors were encountered: