Can anyone explain how to limit these fields, please? Thank you.
Ä°lker OÄžUZ () - 9 years ago - Reply 0
Thanks for the snippet. Really helped. Although it broke when i used options with data-content. Did some dirty-fix and its working...
curiouscod3r () - 9 years ago - Reply 0
There is any way to sign a limit to the inputs? I need this function but for 3 data.
Diego Maruri () - 9 years ago - Reply 0
How would I use the input fields with preloaded data like if there is a value show the remove button?
Fejér Ferenc () - 9 years ago - Reply 0
Ok I have one more question...I have this amazing snippet working on my page. The only issue I have now is when the new field is added it takes on the same name as the field before it. I need it to increment the name for each line. For example: SelectName1 is the first field name attribute, I need the new line to be SelectName2, and then SelectName3 and so on. How can I accomplish that? Any suggestions? Thank you in advance for your assistance.
k3nSchr0eder () - 10 years ago - Reply 0
Nice one :)
I customized the text input a bit and added the following CSS to support addons before and after the input field. Also I like the keyup event more for this. ;)
div.input-group-option:last-child input.form-control,
div.input-group-option:last-child input.form-control:not(:first-child):not(:last-child) {
border-bottom-right-radius: 3px;
border-top-right-radius: 3px;
}
Marc Nolte () - 10 years ago - Reply 0
So please do not burn me as I am new to this. First of all this site has taught me a TON! So thank you all for that. Second, I am running into an issue with this snippet as I cannot figure out how to incorporate the JS into my site files. I have created a JS file called dynamic-text.js with its contents being the provided JavaScript. I have added it the scriptbundle on my Site.Master. I have added the provided CSS to my main Bootstrap.css file and entered the HTML as shown. I still will not work. I really think it has something to do with me not knowing how to incorporate the JavaScript. Any help or suggestions would be greatly appreciated. Thank you.
k3nSchr0eder () - 10 years ago - Reply 0
Does anyone know of an example where the selects are pre populated on load. Say for instance you choose a few selects, save the choices and then want to populate on page load.
John Mood () - 10 years ago - Reply 0
You would have to save the selects into the session (on the back end) and the prepopulate them from the session. This is not an easy task unfortunately as far as I know...
maxsurguy () - 10 years ago - Reply 0