XF 2.2 A simple refresh <xf:button />

Earl

Well-known member
This can be a silly question but please help, I have a custom template in notice system.
I need to add a simple refresh button in it.
which parameters and values should I add to the <xf:button />
?
 
Solution
Just had a quick look. Scratch that, and try this instead:

HTML:
<xf:button href="{$xf.fullUri}" class="button" icon="refresh">Refresh</xf:button>
You might could try something like this...I'm thinking it should work, unless you have params in your URL:

Code:
<xf:button href="." class="button" icon="refresh">Refresh</xf:button>
 
Just had a quick look. Scratch that, and try this instead:

HTML:
<xf:button href="{$xf.fullUri}" class="button" icon="refresh">Refresh</xf:button>
 
Solution
Back
Top Bottom