To Calguy or anyone else who may have the answer:
1. How can I get my cursor to automatically be inserted in the Username field in the FEU login form? (so I don't have to click the field with my mouse or tab into it.)
2. When I click Cancel on the FEU Change Settings form, it just reloads the Change Settings form, and warns that the email address has already been used. The email warning isn't any bid deal, but is the reload normal, or is is supposed to redirect to some other page (to the referring page, for example.) I see the {$cancel} Smarty variable in the changesettings template, but I don't know how to tell exactly what it's doing...
3. When I change my password, it warns me that the email address has already been used. This isn't a big deal, but why does the warning appear? I would think the warning should only appear if the email field is changed and the new string duplicates an existing string in the database.
thanks for your comments!
FrontEndUsers - 3 questions
-
calguy1000
- Support Guru

- Posts: 8169
- Joined: Tue Oct 19, 2004 6:44 pm
Re: FrontEndUsers - 3 questions
I Can't help with #1, but I'll check into #2, and #3 and get back to you.
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Re: FrontEndUsers - 3 questions
thanks! should have mentioned that I'm running .13 release version, with FEU 1.0.5.
-
calguy1000
- Support Guru

- Posts: 8169
- Joined: Tue Oct 19, 2004 6:44 pm
Re: FrontEndUsers - 3 questions
yeah, I thnk these may have been bugs back in 1.0.5..... I just checked in the latest svn stuff works with no problems.
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Re: FrontEndUsers - 3 questions
ok - I had hesitated to install the latest because I saw that it was a beta, but if you think it's stable, I'll give it a go...
Thanks!
Thanks!
Re: FrontEndUsers - 3 questions
in the past, I've focused a particular form field by inserting Javascript in an HTML page as follows:
But this doesn't seem to work in CMSMS - any ideas why not? I've tried wrapping it in {literal} tags and not wrapping it.
But this doesn't seem to work in CMSMS - any ideas why not? I've tried wrapping it in {literal} tags and not wrapping it.
Re: FrontEndUsers - 3 questions
ahh, I just remembered the other reason I hadn't downloaded FEU 1.1 beta. It requires CMSMS 1.0 beta, and I'm running .13 stable.
Oh well, I'll wait till the official 1.0 release and then do all my updates. Still have to figure out this adodb/adodb lite stuff...
Oh well, I'll wait till the official 1.0 release and then do all my updates. Still have to figure out this adodb/adodb lite stuff...
Re: FrontEndUsers - 3 questions
Got the cursor issue:
place this code before your form
{literal}
window.onload = function() {
if(document.formname)document.formname.inputfieldname.focus();
}
{/literal}
place this code before your form
{literal}
window.onload = function() {
if(document.formname)document.formname.inputfieldname.focus();
}
{/literal}

