$(...).formRender is not a function
See original GitHub issue$(…).formRender is not a function(anonymous function) at main.js:27
This is my main.js
$(document).ready(function($) {
var options = {
controlPosition: 'left',
messages: {
select: 'Dropdown',
},
disableFields: ['autocomplete,hidden'],
stickyControls: true,
controlOrder: [
'text',
'textarea',
'select',
'date',
'radio-group',
'checkbox',
'checkbox-group',
'file',
'button',
]};
var fbTemplate = document.getElementById('fb-template');
$(fbTemplate).formBuilder(options);
$('.form-builder-save').click(function(){
console.log($(fbTemplate));
var outputHtml = $(fbTemplate).formRender();
//console.log(outputHtml);
});
});
Issue Analytics
- State:
- Created 7 years ago
- Comments:13 (2 by maintainers)
Top Results From Across the Web
kevinchappell/formBuilder - Gitter
formRender is not a function ... Have You include this render script (<script src="https://formbuilder.online/assets/js/form-render.min.js"></script>).
Read more >TypeError: props.render is not a function (React hook form)
I am passing methods as a prop in this form I am making with react-hook-form. Its giving me (TypeError: props.render is not a...
Read more >$(...).formRender is not a function with vuejs component
I am trying to create a component in vuejs to use formBuilder and formRender functionalities, below is the code for my component. window....
Read more >render - jQuery formBuilder
Setting render to false prevents formRender from making any changes to the DOM. ... jQuery(function() { var formData = '<form-template><fields><field ...
Read more >Form Builder Overview - StudySection Blog
Below I will explain some of the important functions which can be needed ... Set formData without rendering or re-initializing formRender.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@PTRPlay
require('formBuilder/dist/form-render.min.js')
worked for memy react app form builder working fine… but form runder not working…plese anyone help me