Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • in reply to: calendar-title format calendar-title format #80670

    coni
    Participant

    < 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 31

    I would like to do this show.


    coni
    Participant

    Thank you.

    It has been resolved.^^


    coni
    Participant

    hi 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'
                
                     }],
                 });
    

    coni
    Participant

    hi Dimitar,

    Reduce the window sized.

    Then, the image looks like a link.

    Image Link


    coni
    Participant

    hi

    Thank you for responding to.

    I will send you a link JS Editor or JSfiddle example.

    JSFIDDLE Share Link
    full screen result


    coni
    Participant

    hi 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:228

    I suspect code is below.

    
    $('#jqxTabs').jqxTabs('addLast', setTitle, data);
    

    An error occurs when the code is called.


    coni
    Participant

    Fixed 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);
    				});
    			}
    		};
    	});
    
Viewing 7 posts - 1 through 7 (of 7 total)