1
我在下面我的MVC應用程序中使用kendo.ui.Slider:如何將模型值綁定到kendo.ui.Slider?
@(Html.Kendo().Slider()
.Name("slider") //The name of the slider is mandatory. It specifies the "id" attribute of the widget.
.Min(0) //Set min value of the slider
.Max(100000) //Set min value of the slider
.Value(50000) //Set the value of the slider
.SmallStep(1000)
.LargeStep(10000)
.HtmlAttributes(new { style = "width:700px;" })
.Tooltip(tooltip =>
{
tooltip.Format("{0:n0}");
})
.Events(e =>
{
e.Change("sliderOnChange");
})
)
<script>
function sliderOnChange(e) {
var slider = $("#slider").data("kendoSlider");
var sliderValue = slider.value();
alert(sliderValue);
}
</script>
我怎樣才能綁定模型值,而不是(.value的(50000))在這裏分配靜態價值?
是否有可能的模型值綁定到最高最低動態? – giparekh 2015-01-26 13:45:12
@giparekh是的,如果你創建另一個問題並將其添加到評論中,我會爲你解答。 :) – hutchonoid 2015-01-26 14:56:13
嗨hutchonoid,我已經爲我的確切要求創建了另一個問題。請檢查一下。謝謝! – giparekh 2015-02-04 13:40:03