How to create form input data in web Quick start

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2011 04:42 AM
Hello ..! Every one could u help me ? It possible for create form for input data in web Quick start ? and What is module or Component that we use with ?
For Example In joomla ,if we want to create Form For Input Data ..We can use with Jummi component .
So if i want to create like this in Web Quick Start .How could I do?
For Example In joomla ,if we want to create Form For Input Data ..We can use with Jummi component .
So if i want to create like this in Web Quick Start .How could I do?
Labels:
- Labels:
-
Archive
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2011 04:50 AM
Hi,
Do you mean create a new form within the web application similar to the "contact" form, or do you mean create a new form within Share for content editorial use?
Regards, Ben.
Do you mean create a new form within the web application similar to the "contact" form, or do you mean create a new form within Share for content editorial use?
Regards, Ben.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2011 02:40 AM
Yes,i mean create a new form with the web application similar to the "contact" form ,but it has more field than "contact" form. So,Could you show me step by step about this ?
Regards, Mono.
Regards, Mono.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2011 04:35 AM
Hi,
The form itself is just HTML and Freemarker (see the contact form - wcmqs\WEB-INF\webscripts\contact\form.get.html.ftl), however the more important part is how to process the User Generated Content within Alfresco. You can add your own type of visitor feedback and configure a handler that defines what is done when the content is submitted. This is documented within the QS Developer Guide here - http://wiki.alfresco.com/wiki/Web_Quick_Start_Developer_Guide#Processing_Visitor_Feedback
Regards, Ben.
The form itself is just HTML and Freemarker (see the contact form - wcmqs\WEB-INF\webscripts\contact\form.get.html.ftl), however the more important part is how to process the User Generated Content within Alfresco. You can add your own type of visitor feedback and configure a handler that defines what is done when the content is submitted. This is documented within the QS Developer Guide here - http://wiki.alfresco.com/wiki/Web_Quick_Start_Developer_Guide#Processing_Visitor_Feedback
Regards, Ben.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2011 11:24 PM
Hello! i want to created new link the same contact label in WQS site ,so i try to created new label near the contact label in the top right of WQS site "webapps\wcmqs\WEB-INF\webscripts\common\page.ftl" and i was copied folder contact in the same directory after that i rename this folder, So when i go to WQS site i get massage error like this :
" Sorry, but the requested page was not found
Please check that you have spelled the address correctly or use the navigation tools above to find the page you're looking for."
How can i do?
" Sorry, but the requested page was not found
Please check that you have spelled the address correctly or use the navigation tools above to find the page you're looking for."
How can i do?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2011 04:56 AM
Hi,
The contact link is effectivley a static, hard coded anchor pointing to a content item. If you would like to simply replicate the contact form, you could just copy and paste the contact.html content item located under /root/contact, and rename it e.g. /root/contact/test.html. Then setup the new URL in page.ftl e.g.
Hope this helps point you in the right direction.
Regards, Ben.
The contact link is effectivley a static, hard coded anchor pointing to a content item. If you would like to simply replicate the contact form, you could just copy and paste the contact.html content item located under /root/contact, and rename it e.g. /root/contact/test.html. Then setup the new URL in page.ftl e.g.
<li><a href="${url.context}/contact/test.html">${msg('links.test')}</a></li>
Note you will also need the appropriate message bundle value for "links.test", or for testing purposes, just render the anchor without the bundle value e.g. <li><a href="${url.context}/contact/test.html">Test</a></li>
Hope this helps point you in the right direction.
Regards, Ben.
