해당 progress.js로 다운 받아서 수정하고 해당 화면에 반영하여 조회를 하니
4초 이후에 로딩바 나오고 조회 데이타 나옵니다.
거의 마무리쯤에 1초 정도 로딩바로 나오고 난 후 바로 데이타가 조회 되는 상황이네요
왜 그런가요?
>jsp에 정의된 tag를 사용하여 발생하는 현상으로 보입니다.
>
>관련링크1의 샘플의 경우 가우스의 DataSet/TR 컴포넌트에 프로그래스바를 추가한 샘플입니다.
>jsp에 정의된 tag를 사용하지 않고 body를 생성후 insertAdjacentHTML을 사용하게 됩니다.
>
>제공된 progress.js을 수정하여 사용하시기 바랍니다.
>
>감사합니다.
>
>>빠른 답변 감사합니다.
>>
>>.jsp
>>
>>cfLoading(grdInventoryTrend, true);
>>
>><iframe id="HideFrame" name="HideFrame" style="visibility:visible; position:absolute; width:200px; height:101px;" FrameBorder="0" src="/common/include/HidePage.html">
>>
>>알려주신 구조랑 비슷하다고 생각 합니다.
>>
>>
>>>Post로 조회 및 저장할 때 자동으로 동기화(syncload)되게 됩니다.
>>>동기화되면 IE의 모든 기능이 막히게 되므로, div로 프로그래스바로 구현은 어렵습니다.
>>>
>>>IFrame방식을 사용하시기 바라며 샘플은 관련링크1을 참고하시기 바랍니다.
>>>
>>>감사합니다.
>>>
>>>>게시판을 이용해 주셔서 감사합니다.
>>>>다음양식에 맞게 입력해주세요.
>>>>
>>>>* 고객시스템명 :
>>>>* 문의할 Component명 및 버전 : Gauce UniCode 4.0
>>>>* DataSet 버전 :
>>>>* Tr 버전 :
>>>>* 문의 유형(질문/요청/참조) :
>>>>* 내용 :
>>>>
>>>>안녕하세요.
>>>>
>>>>
>>>>다름이 아니오라,
>>>>
>>>>일반 조회시 진행중인 로딩바가 나오는데요
>>>>
>>>>트랜젝션 발생하는 TR로 Post로 보내게 되면 로딩바가 나오지 않는데요.
>>>>
>>>>중간에 자바스크립트 Alert 메시지를 넣으면 로딩바가 보여집니다.
>>>>
>>>>Internet Explorer 8.0 입니다.
>>>>
>>>>common.js
>>>>
>>>>function cfLoading(gObject, v_Sw) {
>>>> if ( v_Sw ) {
>>>> if (gObject != null) gObject.ReDraw = !v_Sw;
>>>>
>>>> document.all.HideFrame.style.visibility="visible";
>>>> for (i = 0; i < document.all.length; i++) {
>>>> var curTagName = document.all[i].tagName.toUpperCase();
>>>> if (curTagName == "INPUT" && document.all[i].type.toUpperCase() == "BUTTON") {
>>>> // 제어 대상 버튼을 배열에 저장
>>>> if (document.all[i].objType == "ctrlBtn") {
>>>> document.all[i].disabled = true;
>>>> }
>>>> }
>>>> }
>>>> } else {
>>>> document.all.HideFrame.style.visibility="hidden";
>>>> if (gObject != null) gObject.ReDraw = !v_Sw;
>>>> for (i = 0; i < document.all.length; i++) {
>>>> var curTagName = document.all[i].tagName.toUpperCase();
>>>> if (curTagName == "INPUT" && document.all[i].type.toUpperCase() == "BUTTON") {
>>>> // 제어 대상 버튼을 배열에 저장
>>>> if (document.all[i].objType == "ctrlBtn") {
>>>> document.all[i].disabled = false;
>>>> }
>>>> }
>>>> }
>>>> }
>>>>}
>>>>
>>>>
>>>>.jsp 파일 내용
>>>>
>>>>cfLoading(grdInventoryTrend, true);
>>>>
>>>>//alert(g_target);
>>>>
>>>>gtrInventoryTrendGraphRight.Parameters = v_Uri.GetParameters();
>>>>gtrInventoryTrendGraphRight.KeyValue = "Servlet(O:InventoryTrendGraphRightData=gdsInventoryTrendGraphRightData)";
>>>>gtrInventoryTrendGraphRight.Post();
>>>>
>>>>cfLoading(grdInventoryTrend, false);
>>>>
>>>>
>>>>빠른 답변 바랍니다.
>>>>
>>>>혹시 모르니 연락처를 남깁니다.
>>>>
>>>>
>>>>
>>>>수고하세요...^^
>>>
>>
>