I have a string, that i want to insert at the end of the UIinput value.
So i did this,
CurIndex = UIinput.value.Length;
UIinput.value.Inser(CurIndex, "some string");
It shows the correct index of the UIinput field, however, it won't insert the "some string" at all.
Am i doing something wrong ?