Lemoon - Select Form Template not available - forms

I have started using Lemoon CMS for a new site, everything is working great with one exception.... Forms. Each time I try to create a New Form i am given the option to Select a Form Template.... however this dropdown is not populated with anything. There is a FormTemplate.aspx file which looks intact, and when I try to view my new page/form I get the message Form "" not found.
Any ideas?!

In order to use forms you need to first create/design a form. You do this under the manage/content types section (/admin/manage/content/default.aspx). There you need to click the "Design form template" link. You can now create your form. Once it is saved you need to create a page in your site that will hold the form. Select your newly created form in the "Select form" dropdown and click Publish.

Related

How to store text from field with Google Tag Manager on a form submission

I'm trying to catch email address as a variable with Google Tag Manager (GTM) on signup form submit on http://cloud.feedgee.com/ru/signup and fire a tag with it. On submit, the page is being reloaded.
By now tried to catch it with Form submission by form id set as shown on screenshot) and a Button click as a Custom event with it's click id
I initiated a DOM element variable with Id of the Form text field (Element Id=ContentPlace_loginEmail)
With these settings in Preview mode on Form Submit, I can not see my Tag in "Tags Fired On This Page" row before page reload.
What can be the reasons for this if Id's of the elements are correct?
May it depend on the container script location on the page?
Now It's located right after the HTML tag.
Can I store form text field in a DOM variable to use it in the tag?
If you want to store the email value in your own API, Google Tag Manager is not the right tool for you. You should only use it to track events that fit under Google's terms of use.
Having said that, when you're working with forms in GTM, hold the <shift> key with you click the submit button. If you do that, a new tab will open up, but the current page wont get redirected or refresh. You'll then be able to see what data is being pushed to the dataLayer.

VBA Form dynamic hyperlink from current record

I have a search form. If I double click on of the items, a new form opens with the selected record, where you can see the details about it. I store an ID, what I can use to open a webpage like https://mywebpage.net/asd/ID. So I want to concatenate my base url (https://mywebpage.net/asd/) with the ID, but it doesn't work. I tried "https://mywebpage.net/asd/" & me.ID, but when I click on it, Access says only "https://mywebpage.net/asd/" without the ID. Can you help me how to create a hyperlink on the details form, which navigate to the current element's webpage?
Find out!
Base url: ="https://myanimelist.net/anime/" & me.malid

Pass selected value from one form to another - ms access

I have an access database which has one form, asset_information in the source of which some fields are restricted to values in another table ([brand name] and [model name]).
I am trying to write a 'popup' or 'modal' form for the asset information form which will allow users to open a search form for the model or brand, search existing ones and then either select the model or brand or create a new one.
Example:
An user clicks here on the first form,
After that, this form pops up - user searches and clicks in one of the results then clicks 'select model'
That returns the model_id selected by the user from the popup form to the original form.
Googling has not helped much, can anyone point me in the right direction? Should I be using the openargs on the second form, or the first and second form? Or should I be using something else entirely?

MS Access 2013 form - attachment field go to new record

I'm extremely new to MS access and was able to create an access form for a SharePoint linked access database. Most of the tutorials concluded at "how to add attachment field and connecting to column (control source). After doing all this, the current situation is that the access form is able to send attachment to the sharepoint form. however, when access form is opened again to reuse, the attachment field shows the previous record's attachment.
I have tried:(me.attachment = "", me.attachment = null, me.attachment = nothing)
but none of it worked. Could anyone help me with this and let me know how to go to the new record?
I'm a novice to access and my coding ability is derived from Excel VBA. Any help is greatly appreciated!! Thank you.
If you want the form to jump to the new record from inside the already open form (like having a "new" button, or just jumping to the new record on the form load) use something like this (on the right section, in your case it should be on Sub Form_Load):
DoCmd.GoToRecord acDataForm, Me.Name, acNewRec
But if you want to open the form from another form (like a a button that opens another form in add mode) us this instead:
DoCmd.OpenForm "Form_Name_Here", , , , acFormAdd
You can also select the form to open in add mode in the form properties, if you want the form to always open like this.

create a from and show entered details in another page in orchard cms

just created a from using "custom form" with input fields like - "Title", "Caption", "Alternate Text", and a button called "Submit". After submit i need to show the entered input fields as an output in another page. How can i achieve this.
Pls guide me with step by step solution. I am not a developer, Im just a designer
So, you created a custom type and added those fields.
Then created a custom form with this type.
You can configure the form to redirect after submit thanks to an textbox that allows to use Tokens, i.e dynamic information retrieved by the content.
Thanks to this, you should be able to redirect to the display url of the content.
To display the output the way you want in another page, you need to make an override of your content in your theme.
You can enable the 'Shape tracing' feature to generate this alternate view of your content and then modify it as you want.