Forum Replies Created
-
Author
-
< 1월 2016 >
————————–
28 29 30 31 1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31< 2016 1월 >
————————–
28 29 30 31 1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31I would like to do this show.
June 17, 2015 at 10:29 am in reply to: The grid does not appear properly on the mobile screen. The grid does not appear properly on the mobile screen. #72632Thank you.
It has been resolved.^^
June 17, 2015 at 7:22 am in reply to: Message according to the rule … Message according to the rule … #72616hi ivailo,
My question was wrong ^^ ;;
If you remove the “message” under the code “Validation Failed!” A message appears.
I do not enter the “message” value,
“rule: required” if “Field did not enter”
“rule: email” if “email is not a form.”
I want you with me to the default message.$('#testForm').jqxValidator({ rules: [ { input: '#userInput', action: 'focus', rule: 'required' }, { input: '#emailInput', action: 'focus', rule: 'email' }], });
June 17, 2015 at 1:02 am in reply to: The grid does not appear properly on the mobile screen. The grid does not appear properly on the mobile screen. #72602June 16, 2015 at 7:16 am in reply to: The grid does not appear properly on the mobile screen. The grid does not appear properly on the mobile screen. #72538hi
Thank you for responding to.
I will send you a link JS Editor or JSfiddle example.
April 28, 2015 at 10:35 am in reply to: Synchronous XMLHttpRequest error Synchronous XMLHttpRequest error #70369hi Dimitar,
yes, same error
Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user’s experience. For more help, check http://xhr.spec.whatwg.org/.
layout.do:81 Uncaught TypeError: $(…).jqxTabs is not a function
> goPage @ layout.do:81
> onclick @ layout.do:228I suspect code is below.
$('#jqxTabs').jqxTabs('addLast', setTitle, data);
An error occurs when the code is called.
April 28, 2015 at 9:36 am in reply to: Synchronous XMLHttpRequest error Synchronous XMLHttpRequest error #70361Fixed like the code below.
But, an error occurs.$(document).ready(function() { $('#jqxTabs').jqxTabs({ width : '100%', animationType : 'fade', //컨텐츠 로딩 애니메이션 적용 scrollAnimationDuration : 500, //스크롤 애니메이션 enabledHover : true, //마우스 가져가면 탭 라인 보임 collapsible : false, //접기 기능 불가 selectedItem : 0, //첫번째 main선택 selectionTracker : true, //탭 이동 애니메이션 적용 scrollable : true, //스크로블 추가 scrollPosition : 'both', //스크로블위치 autoHeight : false, //자동높이조절 불가 showCloseButtons : true, //닫기 버튼 추가 keyboardNavigation : true, //키보드 단축 기능 reorder : true, //재배열기능 추가 scrollStep : 300 }); goPage = function(setTitle, src) { var length = $('#jqxTabs').jqxTabs('length'); var flag = true; var title; for (var i = 0; i < length; i++) { title = $('#jqxTabs').jqxTabs('getTitleAt', i); if (title == setTitle) { $('#jqxTabs').jqxTabs('select', i); $('#jqxTabs').jqxTabs('ensureVisible', -1); flag = false; } } if (flag) { $.get(src).done(function(data) { $('#jqxTabs').jqxTabs('addLast', setTitle, data); //alert(data); $('#jqxTabs').jqxTabs('ensureVisible', -1); }); } }; });
-
AuthorPosts