
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Fake Formset designed to display data of one form field (separated by characters) as a set of fields.
Fake Formset designed to display data of one form field (separated by characters) as a set of fields. Adding / editing / deleting field's data parts also is possible.
Detailed documentation is in the "docs" directory.
Add "fake_formset" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = ( ... 'fake_formset', )
Add static files css/js::
Setup form field, wrap field into following containers::
In form setup field like this::
'my_field': forms.TextInput(attrs={ 'data-fake-formset-id': 'my_field', - unique identifier 'data-fake-formset-max-fields': 3, - fake field max number 'data-fake-formset-split-symbol': '-/' - split symbol for storing value in database (1-/2-/3-/), "," by default. })
Setup js-handler::
const fake_formset = new FakeFormset(); fake_formset.add_button_text = 'Add row'; fake_formset.delete_button_text = 'Remove'; fake_formset.initSignals();
$(document).on('fake-formset:fake-field:added', function (event, fake_field, field, formset_id) { if (formset_id === 'my_field') { fake_field.mask('+7 (999) 999-99-99'); - here you can bind other handlers. } }) $(document).on('fake-formset:fake-field:deleted', function (event, base_field) { // callback on field delete. }) $(document).on('fake-formset:target-field:recalculated', function (event, field) { // callback after base hidden field recalculating. })
Example:
.. image:: https://user-images.githubusercontent.com/33987296/74908431-e3e09e00-53c6-11ea-8140-ead1018018d1.png
.. image:: https://user-images.githubusercontent.com/33987296/74908633-741ee300-53c7-11ea-9b3d-ca43d3018259.png
FAQs
Fake Formset designed to display data of one form field (separated by characters) as a set of fields.
We found that btc-fake-formset demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.