You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please consider allowing the user to input/update/read the plugin options on the fly. I was able to create a separate input field that would update the step setting like so:
I however found no way to show the boosted step value to the user. I tried to update the "timestep" input value but I could not read the step setting from the plugin itself:
$("input").trigger("touchspin.change");
{
var step = $("#timestamp").TouchSpin().data("settings", "step");
$("#timestep").val(step);
}
Is there perhaps a way to read the values of all the settings from plugin? Something like:
$("#timestamp").TouchSpin().step();
Thank you
The text was updated successfully, but these errors were encountered:
Please consider allowing the user to input/update/read the plugin options on the fly. I was able to create a separate input field that would update the
step
setting like so:I however found no way to show the boosted step value to the user. I tried to update the "timestep" input value but I could not read the
step
setting from the plugin itself:Is there perhaps a way to read the values of all the settings from plugin? Something like:
Thank you
The text was updated successfully, but these errors were encountered: