Hi,
I am dynamically fetching the value of a field using ajax on change but the issues is that after addition, the form display the value from database as well as from ajax.
Kindly help me how to display only single value.
Hi,
I am dynamically fetching the value of a field using ajax on change but the issues is that after addition, the form display the value from database as well as from ajax.
Kindly help me how to display only single value.
Re: Scriptcase table show two value on form, one from database and other from ajax
Hello,
You could “clear” the field value before updating it using ajax.
E.j.
{myField} = “”;
{myField} = “some value”;
or simply:
{myField} = “some value”;
regards,
Bernhard Bernsmann
Re: Scriptcase table show two value on form, one from database and other from ajax
Thanks Bernard for this solution…
I had also tried by marking the field as Number Auto Complete. This also worked in my case