Inputs not getting value from variable in content page

I have an input and a variable in a page, the variable has a value, i set the value of the input via dynamic attributes to get its value from the variable. .the value is not showing in the input.

Can you show the code please, that should work pretty easily in general, maybe there is something wrong.

<input id="AddProperty_client_id" name="client_id" type="text" class="form-control" dmx-bind:value="Client_id.value">

the solution i found was to make the variable name lower case and it worked , i don’t understand why it doesn’t work when the variable name is capitalized ,that’s abnormal and definitely a bug

1 Like

There is no issue to use uppercase characters as variable IDs like

<dmx-value id="MYvar" dmx-bind:value="123"></dmx-value>

You can later use it like:

<input id="text1" name="text1" type="text" class="form-control" dmx-bind:value="MYvar.value">

and it works perfectly fine.

The problem seems to be something else on your page, not the var ID.

Thanks for your response, i will check the page for what might be causing it