How to render json column data in table TextColumn
I have call_email json field that holds the data inserted using repeater and array casted in the model :
[{"email": "[email protected]", "phone": "+8798998786xx"}] How to show this data in TextColumn ?
[{"email": "[email protected]", "phone": "+8798998786xx"}] How to show this data in TextColumn ?
6 Replies
using TextColumn.. is there any error?
did you find a solution? cuz I have the same problem π
@Vp @shad I want to show the email from call_email field. If I use
it shows nothing in the table.
It seems like we cannot display repeater data with key:value in a table. but only value json data (below) is displayed correctly
@Dennis Koch sorry for tagging here but do you have any solution here.. Objective is to display repeater json data in a table column
Your db column contains an array of objects. So it would be
call_email.0.email
to show the first one.Thank you so much @Dennis Koch @Vp