[TYPO3] Link to "edit record"

2008-01-19 Thread Lasse Guldsborg
Hi list In a BE extension I have a list of specific fe_users. '.$row['usergroup'].' '.$row['username'].' '.$row['name'].' I would like to make the username a link, from where you get to edit the fe_user record. What is the code for such a link? Cheers, Lasse

Re: [TYPO3] Link to "edit record"

2008-01-20 Thread Peter Klein
Hi Lasse. Try something like this: onclick="window.location.href='../../../alt_doc.php?returnUrl=&edit[][]=edit'" Then insert the url of the current page instead of the text And the name of your table (fe_users) instead of the text And finally replace wit the id of the record you want to edi

Re: [TYPO3] Link to "edit record"

2008-01-22 Thread Lasse Guldsborg
Thank you so much Peter! =) It worked perfectly. Cheers, Lasse "Peter Klein" <[EMAIL PROTECTED]> skrev i en meddelelse news:[EMAIL PROTECTED] > Hi Lasse. > Try something like this: > > onclick="window.location.href='../../../alt_doc.php?returnUrl=&edit[][]=edit'" > > Then insert the url of the c