Can anyone think of a reason why a text box is missing from my EditView?
It's a URL field for a Twitter profile that builds a URL using the Twitter username.
There's an identical field for LinkedIn next to it that doesn't use this URL builder, which has the text box as expected.
The Twitter field was originally just text, without a special URL.
Any ideas?
Thanks
It is not editable because it pulls text from another field to calculate the value. As soon as you make it this type of field, you cannot directly edit it.
I had assumed that I could use a single field, holding the username, and display the URL using a rule (to add http://twitter.com to the front). It seems you must use 1 field for the username, and 1 field to hold the calculated URL
Related
I am using reactjs.
I want to add a string in to the share popup's input field, but I had no success.
Is this option available yet?
Prefilling the text is not possible and (even more important) not allowed:
https://developers.facebook.com/docs/apps/review/prefill
I have a document that contains a grid (Among others).
One column in the grid has full hyperlinks leading to a ticketing system, i.e.
https://ticketsystem.internal.company.com/tickets/ticket1337
I want to enable users to click on the URL and open the ticket in a new browserwindow.
How do I do that?
I assume the url is an attribute form, if you right click on the column header you should be able to create the link (below the example in web, but it works similarly also in Developer).
The attribut needs to be formatted with HTML tags to be a clickable link, using to encapsule the URL-string.
This is done in the data model.
I created a registration form for a website and I included the Place Autocomplete Address Form provided by Google to fill the Country, Province and City fields.
It works perfectly. However, I use Google Analytics and I have seen that a certain number of users leave the process before completing the registration, as if something went wrong and couldn’t complete it.
The form itself is quite simple, so I checked it with some possible errors.
It has several requested fields, so the form reloads partially to display a popup asking you to add the information or data in each case. The fields filled out correctly keep de information. All but the ones filled out by the Google API, which simply disappear. And I am not talking about the information added to them, the fields themselves are missing, removed from the code.
Any suggestion?
I created a registration form.
Some fields (Country, Province and City) are filled by this API:
Place Autocomplete Address Form
The code I used is on that page.
If you fill out the form and make any mistake or fail to fill any requested field, for instance, adding different passwords in the Password and Re-write Password fields, the form realoads partially displaying a message requesting you to fill them properly.
By them, the fields to be filled by the Google API are gone, removed from the code.
The problem is that when the user filled the, in the example, password and re-write password fields properly, another message popups requesting to fill the country, province and city fields.
Is it clear enough now?
I have a form on the home page of quotedjobs.com that I would like to persist the field values of across pages.
For example: A user enters some values in fields, such as job title (textbox), job type (list) and job description (text field). Underneath that I ask users to register on the site, but they have the option to click a link to allow them to login if they are already members.
What I would like to be able to do, is to redirect users to another form that is a copy, but allows them to login instead of register, but keep hold of the values that they entered in the title, type and description form of the previous page so they aren't losing their work.
I have seen the ninja_forms_processing variable in the docs, but I'm not clear on how to use that.
TL;DR - You can't.
As it was slim pickings here, I sent an email over to support. Got this response:
Hello,
At this time this use case is not possible in Ninja Forms. The plugin is currently unable to transfer data from field to field or between forms.
I’m sorry that we do not have a better solution for you at this time.
Thank you,
I need the form to display a checkbox field, when the user selected an image for the upload in an image Form Field and make this required.
The User has to confirm, that he claims the rights on that picture.
I've already tried to make a custom Validator, but i think this won't work for that scenario.
Thank you
If i understood well, 2 solutions:
you do this via html with an . The user have to check this after uploading his picture. If you don't checked the box, it won't submit the form.
With a boolean in your entity, you set it to required=true and you will display it like any other field. But, the result in the database will always be true.. ( useless )