我可以在上面使用kendoNumericTextbox时隐藏此文本框吗? Working Demo



$("#sum_of_itemGrid").kendoNumericTextBox({
  spinners: false,
  format: "{0:n2}",
  decimals: 2,
  restrictDecimals: true
});

$("#sum_of_subRecipeGrid").kendoNumericTextBox({
  spinners: false,
  format: "{0:n2}",
  decimals: 2,
  restrictDecimals: true
});

<input type="hidden" id="sum_of_itemGrid" class="k-textbox" />
<input type="hidden" id="sum_of_subRecipeGrid" class="k-textbox" />
  





我努力了

document.getElementById("sum_of_itemGrid").style.display='block';
document.getElementById("sum_of_itemGrid").style.visibility='visible';

最佳答案

知道了,需要使用包装器

$("#sum_of_itemGrid").data("kendoNumericTextBox").wrapper.hide();
$("#sum_of_subRecipeGrid").data("kendoNumericTextBox").wrapper.hide();

关于javascript - kendoNumericTextbox隐藏的输入类型,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/59783384/

10-10 05:44