Forum Replies Created
- AuthorPosts
jerkski
ParticipantThat fixed it! Thank you Ally! Awesome support as always!
November 6, 2015 at 4:01 pm in reply to: Tabular Form and Dynamic Add/Remove Rows w/ Input Elements #17355jerkski
ParticipantThis would be excellent and very useful! Can you offer clarification as to where to put all of this code and what types of form elements are needed. I assume everything in the first part of steven.l’s post goes in an HTML element, and the process_tabular(); and its following code go in the jquery.iphorm.js file?
I have already added an HTML element, but am confused by the last statement also ‘I added a hidden field ‘is_tabular’ and set its default value to ‘1’’ How can I add a value to a hidden field?
Thank you!
jerkski
ParticipantThis is fantastic! Seems like a great feature to build into your plugin!
jerkski
ParticipantDone… added a hidden element and an html element. Pasted this in the html, first (4_87) references dropdown, the second (4_129) is the id of the hidden element that gets set to the dropdown name, stores it and saves to DB!
<script>
jQuery(document).ready(function ($) {
$(‘.iphorm_4_87’).change(function () {
$(‘input[name=”iphorm_4_129″]’).val($(‘option:selected’,this).text());
}).change();
});
</script>jerkski
ParticipantYou got it! Thank you!!
jerkski
ParticipantHi Ally, thank you for the tip! I did implement and while it does seems to work fine, it is causing it to insert the record twice. One has the base64 file, and the other has the fullpath in it. How can I get rid of the form insert with the fullpath, or how can I have the function overwrite it?
Is there something I am doing wrong?
jerkski
ParticipantWould love to see you implement multi-select in a more visually appealing method. Like this:
May 21, 2014 at 9:16 pm in reply to: Masked Phone number field does not save to entries nor db #11002jerkski
ParticipantThnx for the response. I appreciate your hard work and timeliness!!
May 21, 2014 at 3:44 pm in reply to: Masked Phone number field does not save to entries nor db #10998jerkski
ParticipantUgh…sorry, accidentally put Regex under filters instead of validators. Works great now!
February 27, 2013 at 7:51 pm in reply to: Datepicker control returns array in session variable #3173jerkski
ParticipantSheer genius! I mean it! That solved my problem!
jerkski
ParticipantBTW – Thank you very much for your suggestions! Working awesome!
jerkski
ParticipantHmm, interesting…that worked perfectly! Is there a way to pass more than one variable in the $SESSION? For instance like First name, Last name, etc.?
jerkski
ParticipantThank you! Worked great!
jerkski
ParticipantWould it be possible to have a form submit the data, then display a confirmation page which shows the submitted data as well as the associated {entry-id}? This would create a nice workflow because this means the entry-id has allocated to that record upon submitting the form, otherwise, if you have two different people entering data simultaneously, there may be a conflict if it displays the next available entry-id prior to submitting.
jerkski
Participant- AuthorPosts