|
GeneralStonewall Magician
Joined: 02 Feb 2004 Posts: 364 Location: USA
|
Posted: Mon Nov 01, 2010 11:25 pm
[3.31] BUG (Major): Insert row deletes items. |
Using insert row on a string list appears to cause items to be lost.
Import the following variable:
Code: |
<?xml version="1.0" encoding="ISO-8859-1" ?>
<cmud>
<var name="testvar" type="StringList" copy="yes">
<value>a|b|c|d</value>
<json>["a","b","c","d"]</json>
</var>
</cmud> |
Right-click the third row and select 'Insert row', and enter a value. Hit save and then refresh. There should now be one or more blank rows and missing entries. |
|
|
|
Tech GURU
Joined: 18 Oct 2000 Posts: 2733 Location: Atlanta, USA
|
Posted: Tue Nov 02, 2010 6:43 am |
Confirmed.
This was my end result
Code: |
<?xml version="1.0" encoding="ISO-8859-1" ?>
<cmud>
<var name="testvar" type="StringList" copy="yes">
<value>a|b|d||c|</value>
<json>["a","b","d",null,"c",""]</json>
</var>
</cmud> |
|
|
_________________ Asati di tempari! |
|
|
|
GeneralStonewall Magician
Joined: 02 Feb 2004 Posts: 364 Location: USA
|
Posted: Tue Nov 02, 2010 12:55 pm |
The results appear to be inconsistent. I've done the same procedure and had all but one entry disappear.
|
|
|
|
Zugg MASTER
Joined: 25 Sep 2000 Posts: 23379 Location: Colorado, USA
|
Posted: Tue Nov 02, 2010 6:31 pm |
Confirmed. Not sure how that got missed in Beta testing or if this is a newer bug caused by some other "fix". But I'll fix it in the next update.
|
|
|
|
|
|