I am using facebook registration plugin .
(http://developers.facebook.com/docs/plugins/registration/)
I need to use it in a modal box or in an iframe.
but there is a problem about its form target.
form sends data to "_top" frame.
How can I change it to "_self" or "mytargetname"
This is a known issue with facebook registration plugin.
Refer this link : http://bugs.developers.facebook.net/show_bug.cgi?id=15062
Related
I have created one form using WFFM, and a sending mail on tap of submit button,
After click on submit button it display message "Thank you for filling in the form" and textbox is hidden after submission the form. and when I refresh website it ask me to repeat action.
How can I hide the form after submission?
Changing the Success Mode field to Redirect would certainly be a good workaround to your problem. A dedicated thank you page has the added benefit of being easier to goal track with 3rd party analytics tools like Google Analytics.
I am a new joomla programmer.i need to build new component for upload cv.my form fields are name, email and upload cv and submit button.i only need to build front end view form, filling the details and after click the submit button send the email.please help me create a component(joomla 2.5).
Thank you.
Welcome to the stack-overflow. This is very basic question to ask you can easily search it in Google. But never mind you can check the given link for how to make component. see below.
Developing a Model-View-Controller Component/2.5/Developing a Basic Component
You can use SWF upload to upload the files.see this
Creating a file uploader in your component
And for the email you can use it like this
Sending email from extensions
I've been trying to figure out how to do a modal login in django and have been having some trouble. Is this possible? It seems like it should be. I imagine the solution involves writing a view that takes a POST request and returns some JSON.
Are there any examples out there of how to do this in a clean way?
The easiest way I've found is to do the following:
Write a simple standalone login view
Display this view on your pages as an iframe using a javascript modal dialog (I recommend Colorbox).
Because you're displaying an iframe, you don't have to worry about ajax sends etc. The iframe can just post data and redirect normally.
On a successful login, redirect the iframe to a 'success' page. After a few seconds, have that page send a message to the parent window, which can then close the modal box and make any necessary changes to itself.
We have setup a webform using webform for marketer module in sitecore.
Using this module, we are creating web forms where users can fill details and submit the form. On submit, we can do actions such as storing in database, send email etc.
Now we were able to creat such form using webform for marketer module in sitecore. Now the problem is when user fill the form and hit submit button, instead of posting this action to the page, request is getting redirected to layout in sitecore. This is a same layout we are using to resolve the page on backend.
I have found solution on this link.
http://sdn.sitecore.net/SDN5/Forum/ShowPost.aspx?postid=37264
For some reason App_Browser folder was missing from site. Once i put that folder in. It started working.
Also, i was reading on sitecore sdn site that, in 6.4.1 version, they are removing need for App_Browser
Let's imagine I've made a simple form using the Web Forms for Marketers module 2.2 (for CMS 6.4), and have set this up to use a 'success page' (server side redirect to a specified sitecore item). This works great.
Now it turns out that the thank you page needs to show certain field variables from the form which was just submitted.
"Dear x, thank you for your interest in Y".
On the success page, it seems like there is no way to retrieve the information (server-side) I need to show this information.
What would be a good way to approach this problem?
Is there a way to hook into sitecore webforms before the page is redirected to the success page (so I can pass along an orderId, for example)?
You can create a custom action which will give you access to all the forms data. From the action you can redirect the user to the appropriate place. You can find documentation on how to create a custom action in the reference guide on page 42.
Make sure your action is always after Save To Database because otherwise the data won't be saved.