2016-03-06 76 views
0

我有一個kendo網格,需要所有字段。網格有幾行,當我點擊保存按鈕時,它會試圖逐一保存每一行。如果某些行的值爲空,則會收到與行數相同的警報消息。有沒有辦法只獲取一次警報消息,並停止嘗試保存其他行,直到根據需要提供數據爲止?立刻保存劍道網格,而不是逐行保存

public async Task<IHttpActionResult> Post([FromBody]MyReport report) 
    { 
     CheckNullValues(report.ID); //here alert is thrown 

     if (!ModelState.IsValid) 
     { 
      return BadRequest(ModelState); 
     } 
     await ReportsRepository.CreateObjectSmartAsync(report.GetPOCO()); 
     return Created(report);    
    } 

回答