Hello
I'm returning an object through ajax and assigning the values to their fields.
Usingthetitlefieldasanexample:
$('#txt_titulo').val(objeto_menu.titulo);
However,InoticedonethingwhenIopenedthebrowserconsole.
<inputtype="text" id="txt_titulo" class="form-control input-sm titulo lower valid" name="titulo" tabindex="4" autocomplete="off" placeholder="Título">
Although the field is correctly populated with the value coming from the server, I did not find in the element the value="Menu".
So, you should find something like:
<input type="text" id="txt_titulo" class="form-control input-sm titulo lower valid" name="titulo" tabindex="4" autocomplete="off" value="Menu">
I'm changing some things on the front end, and I'm having a problem because I need this value
.
Does anyone know why it is not displayed?