Listview html item modified by Javascript

0
0

 

Hi

I have an item with a html

for example…. <img id=”img1″ src=”/icon.png”></img>

 

then…

I’m trying to modify this image dinammically… but..

When I try

Eval(alert(document.getElementById(“img1”).id);)

 

The img1 is not found.

I need to modify the image src for example:

document.getElementById(“img1”).src = “/icon2.png”

 

 

??

 

 

 

  • You must to post comments
0
0

Yes you can but on the server side. The data is always coming from the server. The data reader on the client loads only the data pages that are needed for rendering and discards the rest. If you have 500 items (or rows) of data, the client only requests 20 or 30 (depending on the size of the scrollable area). As you scroll, the client asks for more and discards the blocks that are not needed according to memory needs.

You can use Eval(“document.getElementById(‘icon1’).src=’…'”) and “icon1” is an element in a cell it works perfectly well but only if the cell is rendered and the html actually exists. On the server side, you can change it an any time, the server will issue a refresh command to the client and the client will reload the visible range.

If you give a description of the requirement we can try to come up with another solution.

HTH

Best,
Luca

  • You must to post comments
0
0

 

 

Can I modify the cached data?

  • You must to post comments
0
0

Hi Mark,

in addition to my previous reply, we also need to know the sequence of your calls, i.e.
when does the code on the client needs to be executed.

If you add the item and call your javascript code at the same time, the element is not present yet
on the browser since the listview (and datagridview) uses a cached virtual data store ajax systemto retrieve the items/rows as you scroll.

So please give us some more information to determine wether the item could still be outside the scrollable area
or waiting for the servers pull request when your code is called.

Thanks in advance,
Frank

  • You must to post comments
0
0

Hi Mark,

please try following the tips Luca has provided here:

https://wisej.com/support/question/javascript-extender-code-and-element-id

If it does not work, please provide us with a small sample.

Thanks in advance !

Best regards
Frank

  • You must to post comments
Showing 4 results
Your Answer

Please first to submit.