Exemplo n.º 1
0
        public async Task <IActionResult> LoadSheet(string gridKey)
        {
            if (!await _sheetService.IsExist(gridKey))
            {
                await _sheetService.InitSheet(gridKey);
            }
            var jArray = await _sheetService.LoadSheet(gridKey);

            return(Json(jArray.ToJson()));
        }