Hello @odddic,
You cannot activate buttons in the slider field, however, you can insert them programmatically.
I will assume in the code below that your slider field is the fieldname1 and there is only one form in your webpage.
– Insert the following piece of code into the attribute: “Instructions for User” in the settings of the slider field:
<input type="button" value="Prev" onclick="var e = fbuilderjQuery(this).closest('.slider-container').find('.slider'), v = e.slider('value'), s = e.slider('option','step'), m = e.slider('option', 'min');fbuilderjQuery.fbuilder.forms['_1'].getItem('fieldname1_1').setVal(MAX(v-s,m));" />
<input type="button" value="Next" onclick="var e = fbuilderjQuery(this).closest('.slider-container').find('.slider'), v = e.slider('value'), s = e.slider('option','step'), m = e.slider('option', 'max');fbuilderjQuery.fbuilder.forms['_1'].getItem('fieldname1_1').setVal(MIN(v+s,m));" />
Note: if your slider field is for example the fieldname3 field, use fieldname3_1 in the previous piece of code.
Best regards.