listviews refresh on every render. you can use repeatingview if you
want to control/do the refreshing yourself.

-igor

On Thu, Oct 1, 2009 at 5:26 AM, tubin gen <[email protected]> wrote:
> My page have several tabls all of them are panel cahcing tab   it worked
> fine loading only once   , I added a new pancel caching tab   which has a
> download link , here clicking on the link i should create a response
> stream with byte array  and
>
> here   is the code
>
>        setRedirect(false);
>        WebResponse response = (WebResponse) getResponse();
>        response.setAttachmentHeader(filename);
>        response.setLastModifiedTime(Time.now());
>        response.setContentType("application/octet-stream");
>        response.write(
>                new ByteArrayInputStream(filedata));
>        response.close();
>
>
>
> immediately after this code is executed the tab reloads the content ,  the
> tab has a  listview and its populateItems method is called    is therey any
> way i can avoid this ?
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to