0
我正在使用JS-GRID。我如何設置默認值輸入?JS-GRID:如何設置默認值
我試過下面的代碼。但是沒有成功
fields: [
{ name: "addresse", type: "text", width: 500, validate: "required",
insertValue: function(){
return "My Default value";
}
},
]