No it should not be in a modal. It should take place within the post area, just as it works in the customization database at phpbb.comAliasM2K wrote:What about this?callumacrae wrote:I'd like to see something like this, but less ugly: http://cl.ly/0b1P280V0Z3S2j2p2O3M
[RFC] AJAX Quick Edit
Re: [RFC] AJAX Quick Edit
Has an irascible disposition.
- callumacrae
- Former Team Member
- Posts: 1046
- Joined: Tue Apr 27, 2010 9:37 am
- Location: England
- Contact:
Re: [RFC] AJAX Quick Edit
I'm not a fan. When you start popping stuff out at the users, it disrupts the experience, and can be a bit disorientating.AliasM2K wrote:What about this?callumacrae wrote:I'd like to see something like this, but less ugly: http://cl.ly/0b1P280V0Z3S2j2p2O3M
- DavidIQ
- Customisations Team Leader
- Posts: 1904
- Joined: Thu Mar 02, 2006 4:29 pm
- Location: Earth
- Contact:
Re: [RFC] AJAX Quick Edit
Go look at our customisations database and try editing a post. That is what Quick Edit should be doing, not some modal. That makes it less quick and it blocks other posts which you could be basing your edit on.
- callumacrae
- Former Team Member
- Posts: 1046
- Joined: Tue Apr 27, 2010 9:37 am
- Location: England
- Contact:
Re: [RFC] AJAX Quick Edit
I linked to something like that a while ago in this thread: http://cl.ly/0b1P280V0Z3S2j2p2O3MDavidIQ wrote:Go look at our customisations database and try editing a post. That is what Quick Edit should be doing, not some modal. That makes it less quick and it blocks other posts which you could be basing your edit on.
- galaxyAbstractor
- Google Summer of Code Student
- Posts: 17
- Joined: Sun Sep 25, 2011 7:40 pm
Re: [RFC] AJAX Quick Edit
I like this idea. When a user is done editing and press the submit button, should the user be redirected to a page that confirms the edit, or would the textbox be replaced with the new post directly (and maybe some message about confirmation)?
Re: [RFC] AJAX Quick Edit
The text box will be dynamically replaced with the new edit. No redirects or confirmations.galaxyAbstractor wrote:When a user is done editing and press the submit button, should the user be redirected to a page that confirms the edit, or would the textbox be replaced with the new post directly (and maybe some message about confirmation)?
Has an irascible disposition.
- callumacrae
- Former Team Member
- Posts: 1046
- Joined: Tue Apr 27, 2010 9:37 am
- Location: England
- Contact:
Re: [RFC] AJAX Quick Edit
+1VSE+ wrote:The text box will be dynamically replaced with the new edit. No redirects or confirmations.galaxyAbstractor wrote:When a user is done editing and press the submit button, should the user be redirected to a page that confirms the edit, or would the textbox be replaced with the new post directly (and maybe some message about confirmation)?
Re: [RFC] AJAX Quick Edit
Ok. Just tried out implementing what I thought would be good...DavidIQ wrote:Go look at our customisations database and try editing a post. That is what Quick Edit should be doing, not some modal. That makes it less quick and it blocks other posts which you could be basing your edit on.
Anyway, what about an inline text area that is hidden, which fades in on clicking the edit button? I think that would do for a quick edit...
- callumacrae
- Former Team Member
- Posts: 1046
- Joined: Tue Apr 27, 2010 9:37 am
- Location: England
- Contact:
Re: [RFC] AJAX Quick Edit
You should send an AJAX request requesting the BBCode, then create the textarea and insert the BBCode into it.AliasM2K wrote:Ok. Just tried out implementing what I thought would be good...DavidIQ wrote:Go look at our customisations database and try editing a post. That is what Quick Edit should be doing, not some modal. That makes it less quick and it blocks other posts which you could be basing your edit on.
Anyway, what about an inline text area that is hidden, which fades in on clicking the edit button? I think that would do for a quick edit...
Re: [RFC] AJAX Quick Edit
Can become too much data for a single thread. This means to the browser to download the double of the information for editable posts which can become heavy.AliasM2K wrote:Ok. Just tried out implementing what I thought would be good...DavidIQ wrote:Go look at our customisations database and try editing a post. That is what Quick Edit should be doing, not some modal. That makes it less quick and it blocks other posts which you could be basing your edit on.
Anyway, what about an inline text area that is hidden, which fades in on clicking the edit button? I think that would do for a quick edit...