Strange internal change of the App Between V...

Strange internal change of the App

Between Version 1.001364 and 1.001365 happend something strange. Since 1.001365 I was not able to ADD an entry in the Records Table. When I click on the “+” Button it opens a blank screen. Another problem that occurred: Some Actions don’t work anymore. I got the error message “Updated row with key null cannot be found”.

I now changed to the previous version, because we work with this App.

Do you know why this happend?

appName=QualityGate-622224

Here are the changes from the Version History:

LastModified = 12/18/2018 8:38:14 AM Version = 1.001365 Presentation{ Controls_12{ Settings = {

“MainSlideshowImageColumn”: “auto”,

“HeaderColumns”: [

“Note”

],

“QuickEditColumns”: [],

“ColumnOrder”: [

“Note”,

“Note_All”,

“Related_QualityGate_Defects”

],

“ImageStyle”: “Fill”,

“DisplayMode”: “No Headings”,

“MaxNestedRows”: 5,

“SlideshowMode”: false,

“SortBy”: [],

“PrimarySortColumn”: null,

“IsPrimarySortDescending”: false,

“Events”: [],

“Icon”: “fas fa-sticky-note”,

“MenuOrder”: 1

} ViewDefinition{ ColumnOrder = Related_QualityGate_Defects } } } AppData{ TableSlices_10{ Columns = Related_QualityGate_Defects } DataSchemas_1{ Attributes_30{ InternalQualifier{ System internal change – update to column metadata } AppFormula = =SUBSTITUTE([Related_QualityGate_Defects][Comment] , " , " , "

") } } } NumEdits = 1296

0 4 376
4 REPLIES 4

I think I found the reason:

When I add a virtual column to the Records Table with the formula:

=SUBSTITUTE([Related_QualityGate_Defects][Comment] , " , " , "

")

the Form will appear as a blank screen.

If I just use: =[Related_QualityGate_Defects][Comment] it is working fine.

I think the SUBSTITUTE is the problem.

You probably need to encode/quote/escape the SUBSTITUTE() expression for use in JSON. The unescaped quotes, parentheses, and commas in the expression are likely confusing things.

+Steve Coile Thank you, you are totally right. But how could I do this?

@praveen Seems similar to this Post where you released a fix to this White-Screen bug. plus.google.com - Hello, I’m trying the “Suggested Values” feature for a column. It seems to wo… Hello, I’m trying the “Suggested Values” feature for a column. It seems to wo… plus.google.com

+Steve Coile It’s working with

=SUBSTITUTE(TEXT[Related_QualityGate_Defects][Comment]) , " , " , "

")

Thank you for your hint

Top Labels in this Space