Jump to content
UBot Underground

[BUY] Plugin to refresh UI html


Recommended Posts

Hi all, i normally build application with full UI html page (hide browser), one issue i have found is we are not able to refresh the UI html.

 

we can insert a variable in the html code, for example: {#html}
when we update/set the #html variable, we need a function to refresh the UI panel to display the injected code.

is anyone working on a plugin to do this?
 

 

Link to post
Share on other sites

UI html code do not refresh automatically, for example if you want to show a data table when the bot process ended (show it in the UI area).

when you write the new data as #variable, it will not reflect it in the UI area code, unless you refresh the UI.

 

<html>
{#variable}
</html>

 

Pash responded regarding his plugin.

Link to post
Share on other sites

UI html code do not refresh automatically, for example if you want to show a data table when the bot process ended (show it in the UI area).

 

when you write the new data as #variable, it will not reflect it in the UI area code, unless you refresh the UI.

 

<html>

{#variable}

</html>

 

Pash responded regarding his plugin.

ah i understand now, and i've ran into a problem liek this..

Link to post
Share on other sites

ah i understand now, and i've ran into a problem liek this..

yes, if we are able to refresh UI, then we will not have UI html update problem, we can inject whatever code inside as a variable.

Link to post
Share on other sites

yes, if we are able to refresh UI, then we will not have UI html update problem, we can inject whatever code inside as a variable.

Just a heads up. If you refresh your UIHTML while it's running it will stopped and you need to run it again.

Link to post
Share on other sites

Just a heads up. If you refresh your UIHTML while it's running it will stopped and you need to run it again.

Thanks for the information Kreatus.

 

Congratulation for the product launch, i am also an IM product developer, PM me with affiliate signup link, i will help promote.

Edited by fastlinks
  • Like 1
Link to post
Share on other sites
  • 4 weeks later...

You can already do this!

 

You just need to add a div or span tag to your html for the UI Panel like so:

<div variable="#HTML" fillwith="innerhtml"></div>

Then you can set the #HTML variable to whatever you want...

set(#HTML, "<table>
<th style=\"color:red;\">Table Header</th>
<tr>
<td style=\"color:green;\">Table Col</td>
</tr>
</table>", "Global")

Hope that helps!!

 

Carl :-) 

Link to post
Share on other sites

You can already do this!

 

You just need to add a div or span tag to your html for the UI Panel like so:

<div variable="#HTML" fillwith="innerhtml"></div>

Then you can set the #HTML variable to whatever you want...

set(#HTML, "<table>
<th style=\"color:red;\">Table Header</th>
<tr>
<td style=\"color:green;\">Table Col</td>
</tr>
</table>", "Global")

Hope that helps!!

 

Carl :-) 

We want to achieve something different on this carl.

For example we want to change the height of the UIhtml or completely use different theme for your UI you gonna need to refresh the uihtml.

Link to post
Share on other sites
  • 3 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...