I have a array of 2 elements in which i have some values, need to add condition to allow user to edit only 1 value not the other one

Hello Walter,

I’m having a textblock as below, in which i have 2 values in a array and i want to make only 1 of the textblock editable for the user not the other one.
what editable condition should I be using to acheive it?
$(
go.TextBlock,
styling(),
{
name: “Property value”,
margin: 9,
wrap: go.TextBlock.WrapFit,
editable: true
},
new go.Binding(“text”, “value”).makeTwoWay()
),

A TextBlock shows a single string. It does not render a JavaScript Object or Array.

Perhaps you could use two TextBlocks, where one has TextBlock.editable true and the other one has it false?

Or could you please show us what you want?

I got a solution reading here and there.
thanks walter for quick response.
Have a nice weekend ahead man.