Hi,
I am new to bubble, and I am struggling to figure out how to use a dynamic Map Object that is returned by our API’s to a bubble Table / Column Elements?
Backend: The backend is a JAVA Microservice that returns a JSON in the following format:
[{
effecteStartDate: “2020-01-01”,
effectiveEndDate: “2020-05-01”,
rateTable: {
“key” : “value”,
“key” : “value”
}
}]
The field “rateTable” is a Map<String, Object> from Java side, and depending on the data, the <key,Value> pairs change.
Problem: When I initialize the data in the API or Input the response manually, bubble is hard binding the “key” to a field. Is there a way to tell bubble that the “rateTable” is a dynamic Map<String, Object> and the “key” will change depending on the calls.