Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 47f2bbe

Browse files
committed
Fixed a problem where datagrid values get messed up when rows are removed.
1 parent ef3d39b commit 47f2bbe

14 files changed

+1758
-1222
lines changed

Changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## 2.25.3
8+
### Fixed
9+
- An issue where data values within a datagrid get messed up when rows are removed.
10+
711
## 2.25.2
812
### Fixed
913
- A problem with Select dropdowns where the placeholder was getting included as the select value.

app/examples/hosted.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Formio.createForm(document.getElementById('formio'), 'https://examples.form.io/e
2222
<div class="well">
2323
<div id="formio"></div>
2424
<script type="text/javascript">
25-
Formio.createForm(document.getElementById('formio'), 'https://examples.form.io/example').then((form) => {
25+
Formio.createForm(document.getElementById('formio'), 'http://urjhtsfbuucfyhj.localhost:3000/wizard').then((form) => {
2626
form.on('change', function(value) {
2727
console.log(value);
2828
});

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "formiojs",
33
"description": "Common js library for client side interaction with <form.io>",
4-
"version": "2.25.2",
4+
"version": "2.25.3",
55
"main": "dist/formio.min.js",
66
"license": "MIT",
77
"homepage": "https://github.com/formio/formio.js",

dist/formio.embed.js

Lines changed: 430 additions & 304 deletions
Large diffs are not rendered by default.

dist/formio.embed.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.form.js

Lines changed: 427 additions & 301 deletions
Large diffs are not rendered by default.

dist/formio.form.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.full.js

Lines changed: 430 additions & 304 deletions
Large diffs are not rendered by default.

dist/formio.full.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formio.wizard.js

Lines changed: 428 additions & 302 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)