Commit 4313eb50 by Takatoshi Miura

needSyncFlg更新時にカテゴリ選択が解除される問題の対応

parent 535f7af1
......@@ -446,14 +446,8 @@ CHK.initReportApp = function (callback) {
CHK.isSearched = false;
CHK.operationGroupMasterId = 0;
// 作業一覧JSONデータ
CHK.loadJson(CHK.jsonPath.operationList, function (json) {
CHK.operation = json;
$('#operationTable').empty();
CHK.operation.searchOperationList = json.operationList;
//作業一覧描画
CHK.createOperationList(CHK.operation.operationList);
//カテゴリー高さ固定
});
CHK.initOperationList();
// カテゴリーJSONデータ
CHK.loadJson(CHK.jsonPath.operationGroupMasterList, function (json) {
CHK.operationGroupMaster = json;
......@@ -473,6 +467,20 @@ CHK.initReportApp = function (callback) {
}
/**
* 作業一覧を描画
*/
CHK.initOperationList = function() {
// 作業一覧JSONデータ
CHK.loadJson(CHK.jsonPath.operationList, function (json) {
CHK.operation = json;
$('#operationTable').empty();
CHK.operation.searchOperationList = json.operationList;
//作業一覧描画
CHK.createOperationList(CHK.operation.operationList);
});
}
/**
* カテゴリー表示領域の高さ調整
*/
CHK.setCategoryHeight = function() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment