I have html page with table on it. Simplify it may look at:
<Row_ID>, <bla-bla-bla>, <_XXX.XX%_ is complete>
In C# I has a function that evaluate "% is complete" by ID. But it operation may take some times (not instant and may cause some delay )
Now I need implement auto-refresh of "% is complete" that will be update data in one or two minutes interval. I do not want to reload neither entire page nor entire table (if I do it by ajax). Because user may look at the page and the reloading will brake its current position (or even rows counts in the table).
So I think about javascript setTimeout that call some function and to get values from server (by JSON?) But I'm not sure about web-page freeze when javascript function will request data. May be there are another update methods exists?
Any versions or suggestions are welcome!
Sorry for my broken English.