on 2009 Sep 28 4:54 PM
hello, i have a button with this localization {##BTN_Insert1}...but i want that the value of the button changes to when the user click on a cell...i have tried like this: - document.getElementById('btn_Insert') = ;
regards
Mário
Request clarification before answering.
Assign your translation value to a hidden form element on your page and reference that in your javascript
<input type="hidden" id="id_BTN_Change" name="name_BTN_Change" value="{BTN_Change}" />and
document.getElementById('btn_Insert').value = document.getElementById('id_BTN_Change').value;or something similar
Regards,
Christian
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.