|
Posted by Stefan Mueller on 03/22/06 13:46
> As I said in the follow-up, it's easier to store the original value in
> a hidden field parallel to the input field. Or better yet, use a onload
> handler to capture the initial values of every fields. Something like:
First of all thanks a lot for your solutions.
Yea, I've also thought about your solution (hidden fields). However, I've a
table with hundreds of fields. Today, to sort this table takes already some
time. But if I add for each field a hidden field the sorting will take to
much time. Therefore I try to find a solution to get the real characters (δ,
φ, ό, ...) from the HTML characters (äöü, ...).
In the worst case I've to write my own function (search for 'ä' and
replace it with 'δ', then seach for 'ö' and replace it with 'φ', ...)
Stefan
[Back to original message]
|