Property Being Blanked

First, I print the variable “renderParams” which contains a “CountywoutCounty” property of “Wake”

Then, I print the “CountywoutCounty” property of renderParams
and it’s blank instead of being “Wake”

When I pass renderParams to a Backendless API call called “Claims Complaint by County” and print the unmodified renderParams as the return, it shows the entire set of properties, except that “CountywoutCounty” has been blanked.

It seems like something is blanking the CountywoutCounty property whenever I try to get the property, but the UI builder has no actions between printing renderParams with a working property and then printing the property that suddenly appears blank. Spelling is identical.

Do you know how to use “Custom” block from the “Advanced” category in Codeless? The block allows you to run JS in your app.

I am not a coder, but am familiar with the block in question. I use it in a few places where a programmer gave me or helped me with the code.

-David

It would be useful to get a console output for the renderParams variable with the following code:

console.log( JSON.stringify( renderParams ) )

The code provided produces: “CountywoutCounty”:“”

Whereas the “print” block shows: “CountywoutCounty”:“Wake”

This is the case regardless of which one is put before the other.

If you were to print renderParams with that code, you should have gotten a complete json object printed.

Yah, it printed the complete JSON object, with an empty “CountywoutCounty” as below

{“Zip”:“27613”,“PlaintiffState”:“North Carolina”,“UserCity”:“Cary”,“Defendant”:“Ramsey Bolton”,“county”:“”,“MyAddressLine2”:“Raleigh, NC 27613”,“MyAddressLine1”:“6613 Hammersmith Drive”,“issues”:“Equitable Distribution, Child Support, Alimony, Divorce, Custody”,“ExCountry”:“United States”,“ServiceContact1Name”:“Ramsey Bolton”,“PlaintiffPhone”:“(111) 111-1111”,“FileNo”:“”,“NameandAddress”:“David King, King @ Law
Bar ID#: 54884
6613 Hammersmith Drive
Raleigh, NC 27613”,“ServiceContacts”:“Ramsey Bolton
2221 Iron Works Drive Unit #222
Raleigh, North Carolina 27604

Test Lawyer
12345 Strickland Road Unit #111
Raleigh, North Carolina 27613

”,“Street”:“6613 Hammersmith Drive”,“Xifmilitary”:“x”,“judge”:“”,“DefendantState”:“North Carolina”,“PlaintiffFirst”:“Sansa”,“OCAddressLine2”:“Raleigh, North Carolina 27613”,“WordCheckedifClientDefendant”:“<input type="checkbox" >”,“OCAddressLine1”:“12345 Strickland Road Unit #111”,“DefendantPhone”:“(222) 222-2222",“MyEmailClient”:"David@kinglawnc.com”,“ExPhone”:“(222) 222-2222”,“ExJurisdiction”:true,“UserCounty”:“Wake”,“ChildrenDetails”:“Child1 (born 01/01/2011); Child2 (born 02/02/2012)”,“phone”:“919.706.5322”,“served”:“”,“DefendantZip”:“27604”,“xifDIYDefendant”:“”,“ExFirst”:“Ramsey”,“ExCityStateZip”:“Raleigh, North Carolina 27604”,“UserZip”:“27518”,“xifClientPlaintiff”:“x”,“DefendantCityStateZip”:“Raleigh, North Carolina 27604”,“ExDoB”:“02/20/1920”,“DefendantCounty”:“Wake”,“ExZip”:“27604”,“xifPlaintiffClient”:“x”,“UserEmail”:"David@kinglawnc.com",“DateofMarriage”:“11/9/2018”,“DefendantLast”:“Bolton”,“PlaintiffEmail”:"David@kinglawnc.com",“Maiden”:“Maidenname”,“ExEmail”:"Ramsey@gmail.com",“email”:"David@kinglawnc.com",“UserDoB”:null,“FirmifClient”:“King @ Law”,“ExStreet”:“2221 Iron Works Drive Unit #222”,“xifClient”:“x”,“UserState”:“North Carolina”,“UserJurisdiction”:true,“UserParty”:“Plaintiff”,“PlaintiffStreet”:“1110 Southeast Cary Parkway Unit #111”,“xifClientDefendant”:“”,“xifPlaintiffDIY”:“”,“ExLast”:“Bolton”,“UserStreet”:“1110 Southeast Cary Parkway Unit #111”,“CheckedifOpposing”:“<input type="checkbox" checked>”,“MyPhoneifClient”:“(919) 706-5322”,“CheckedifnoOpposing”:“<input type="checkbox">”,“MyNameifClient”:“David King”,“MilitaryMessage”:“Served at the battle of the bastards”,“MarriageCountry”:“Countrymarriedin”,“WordCheckedifClientPlaintiff”:“<input type="checkbox" checked>”,“PlaintiffLast”:“Stark”,“Plaintiff”:“Sansa Stark”,“hashave”:“have”,“OCFirm”:“Organization”,“DefendantCity”:“Raleigh”,“clientplaintiffbooleon”:“”,“PlaintiffCounty”:“Wake”,“UserPhone”:“(111) 111-1111”,“DateofSeparation”:“11/9/2023”,“BarIDClient”:“#54884”,“ChildrenNoString”:“2”,“OpposingCounsel”:“Test Lawyer”,“filed”:“”,“ExCity”:“Raleigh”,“UserGenderActual”:“female”,“UserCountry”:“United States”,“City”:“Raleigh”,“MarriageState”:“Statemarriedin”,“AttorneyorUserName”:“David King”,“xifDefendantDIY”:“”,“State”:“NC”,“ExCounty”:“Wake”,“ServiceContactswEmail”:“Ramsey Bolton
2221 Iron Works Drive Unit #222
Raleigh, North Carolina 27604
Ramsey@gmail.com

Test Lawyer
12345 Strickland Road Unit #111
Raleigh, North Carolina 27613
Email

”,“ExParty”:“Defendant”,“ServiceMethod”:“”,“ServiceContact1Line1”:“2221 Iron Works Drive”,“xifDIYPlaintiff”:“”,“ServiceContact1Line2”:“Raleigh, North Carolina 27604",“UserFirst”:“Sansa”,“CountywoutCounty”:“”,“xifPlaintiff”:“x”,“ExGenderActual”:“Male”,“DefendantEmail”:"Ramsey@gmail.com”,“UserLast”:“Stark”,“UserCityStateZip”:“Cary, North Carolina 27518”,“ChildrenNo”:2,“WordCheckedifDIYDefendant”:“<input type="checkbox">”,“UserName”:“Sansa Stark”,“WordCheckedifDIYPlaintiff”:“<input type="checkbox">”,“UserGender”:“Wife”,“ExState”:“North Carolina”,“xifDefendantClient”:“”,“PlaintiffCityStateZip”:“Cary, North Carolina 27518”,“Date”:“05/14/2025”,“xifDefendant”:“”,“PlaintiffZip”:“27518”,“DefendantStreet”:“2221 Iron Works Drive Unit #222”,“ExGender”:“Husband”,“Signature”:“/s/ David King”,“DefendantFirst”:“Ramsey”,“ChildPlural”:“children”,“waswere”:“were”,“PlaintiffCity”:“Cary”,“xifOther”:“x”,“OtherClaim”:“Attorney Fees “,“DocumentBeingVerified”:“Complaint for Equitable Distribution, Child Support, Alimony, Divorce, Custody”,“xifAttorneyFees”:””,“xifAlimony”:“x”,“xifInterimDistribution”:“”,“xifChildSupport”:“x”,“xifCustody”:“x”,“xifPostSeparation”:“x”,“xifED”:“x”,“placeholder”:“”,“xifComplaint”:“x”,“xifAnswer”:“”}

This is SOLVED. By comparing the manually-coded JSON print to console command to the print ui builder, I realized that varioues properties all from the same database record were the ones blanked. I’m not sure what fixed it, but I messed with it a bit and now it works.