Im new to aem. I am using the form options core components.
The form options - List is not picking up the static list which is created .
Any suggestions.
Thanks in advance.
Related
enter image description hereNeed to implement this multi input textbox as the suggestions will come from the database and the entries need to reflect both from back end to front end as its get entered and from front end to backend.
At the front-end part you can use PrimeNG AutoComplete component. It is input component that provides real-time suggestions when being typed. To enable multiple selection you need to add [multiple]="true", it would look like:
<p-autoComplete [(ngModel)]="texts" [suggestions]="results" [multiple]="true"></p-autoComplete>
To enable two-way binding in angular you need to use [(ngModel)] construction.
Also, you can find some samples using this component at Github
I am currently doing some research on building a multipage form using silverpop but I couldn't find a relevant material online. Has anyone tried to do this? If so any pointers on how to implement it would be greatly appreciated.
I built a multi page webform outside of their UI in PHP and used their API to send in the values.
Do you have any experience with their API?
I guess you can also build one in their UI but use JQuery to hide and display sections of fields. I haven't tried out that method though.
I am new in CQ5 and I would like seek help on how will I be able to add a new custom console in my CQ instance. If you guys can give me a walkthrough or a reference which I can use. I'm trying to search for answers but I failed to get one.
You can customize the login and welcome screens by copying the relevant code in /libs/cq/core/content, /libs/cq/core/components, /libs/wcm, etc. to the corresponding /apps node(s), just the same way you would customize an ordinary content-handling component. Some references in the CQ5 docs:
http://dev.day.com/docs/en/cq/current/deploying/configuring_cq.html#Removing%20CQ%20Sign%20Out%20Links
http://dev.day.com/docs/en/cq/current/developing/customize_siteadmin.html
I am searching the joomla component that generate form fields (Form Builder) with database fields. So anybody know the component for installation. Please provide me a link to download component.
You can try RichContactPro. A Joomla form builder
JForms should do the trick. Building forms could not be any simpler. In JForms you just drag'n'drop the fields that you require and it's ready to go.
I use ChronoForms for building forms and ChronoConnectivity to associate those forms with either existing tables or tables created through ChronoForms based on the form you build. You can put together some pretty intricate apps using these 2 components.
Try this form builder. It can be used not only for Joomla
I'm using JCCreator
They have live chat to support you
And also SALE with coupon NewUser2019 gives 50%
hey, i'm stuck at a problem which is kind of similar to one that Erik asked about. I'm trying to create a dynamic form in zend and what i wanna do is that there should be a button which when clicked adds a new text box or any form element dynamically.
now the problem is that i'm new to zend framework. i'm using 1.9.7 right now. i've done some functionality like user registration and login etc but dojo and zend subform are completely alien to me. so i need your help. please guide me that where should i start and what would be the logic of this dynamic form.
regards,
furqan
These new elements should be instances of new Zend_Form_Subform to have server side validation working properly.
New subforms may be added via AJAX (see ajaxLink view helper) or to be already present on the page, but hidden with CSS+JavaScript.
I don't know a lot about zend, but if you want to do that on the client side, you can use dojo.place as described here.