提交数据你自己写ajax方法,或者用JQUERY等控件提供的,或者用Wijmo提供的都行,我发你的第二个链接就是,比如提交theGrid表格的数据,可以参控下面的代码
- document.getElementById("savebtn").onclick=function(){
- var postdata=theGrid.itemsSource;
- wijmo.httpRequest('your url', {
- data: theGrid.itemsSource,
- complete: (xhr) => {
- alert(xhr.responseText)
-
- },
- error: (xhr) => {
- alert("保存错误")
-
- },
- });
- }
复制代码 |