function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
kamal3883kamal3883 

progess bar in new window

Hi,

 

I want to show progress bar in new window. Actually we have a functionality where we want to show progress bar when someone click on search button. This progree bar should display in new window.

 

some code:

j$( "#progressbar" ).show().progressbar({
                value: 25
            });

 

After serach is complete i want window should return back to normal.

sambasamba

I think this progressbar should have a completed or finished methods except show method. pls check it.

 

 

Thanks,

Samba

kamal3883kamal3883

hi Samba,

 

Actually we are setting its value to 25, 50 and 100 at different instants. I just want to show this bar in new window. As there is no methods on that.

 

visualforce code is somewhat like this.

 

<td>                         <input type="button" value="search" onclick="searchProductData()"/>                     </td>                 </tr>                 <tr>                    <td>                         <div id="errors" style="color:#FF0000; padding-top:10px"></div>                     </td>                 </tr>            </table>         </center>     </apex:pageBlock>     <div id="dialog-modal" title="Product Services"></div>     <div id="progressbar" style="height:5px;"></div>     <table id='results' border='1' class="display"></table>

</apex:page>

 

and we set value of progress bar in searchproductbutton