nathanw
08/18/2020, 10:10 PMsearchModule.createColumn({ name: "internalid", join: "customerMain", label: "Internal ID" }),
later on as I run the search I log each search result
{"recordType":"salesorder","id":"518560","values":{"internalid":[{"value":"518560","text":"518560"}],"transactionname":"Sales Order #202144","trandate":"8/18/2020","customerMain.internalid":[{"value":"73960","text":"73960"}],"formuladate":"8/18/2020"}}
But for some reason the following doesn't work,
var customerId = result.getValue({ name: 'customerMain.internalid' });
customerId is always null. I think its something obvious, yet it escapes me...battk
08/18/2020, 10:11 PMnathanw
08/18/2020, 10:12 PM