thank your for your swift answer. below is my code
1:
2: $(document).ready(function () {
3: $("[id$=saveButton]").click(function () {
4: var isValidForm = jQuery('#form1').validationEngine('validate');
5: if (isValidForm) {
6: $.blockUI({ css: {
7: border: 'none',
8: padding: '15px',
9: backgroundColor: '#000',
10: '-webkit-border-radius': '10px',
11: '-moz-border-radius': '10px',
12: opacity: .5,
13: color: '#fff'
14: }
15: });
16: }
17: });
18:
19: jQuery("#form1").validationEngine({ scroll: false });
20: $(function () {
21: $('.slide-out-div').tabSlideOut({
22: tabHandle: '.handle', //class of the element that will become your tab
23: pathToTabImage: 'images/navigation/navigation.gif', //path to the image for the tab //Optionally can be set using css
24: imageHeight: '100px', //height of tab image //Optionally can be set using css
25: imageWidth: '25px', //width of tab image //Optionally can be set using css
26: tabLocation: 'right', //side of screen where tab lives, top, right, bottom, or left
27: speed: 300, //speed of animation
28: action: 'click', //options: 'click' or 'hover', action to trigger animation
29: topPos: '20px', //position from the top/ use if tabLocation is left or right
30: leftPos: '20px', //position from left/ use if tabLocation is bottom or top
31: fixedPosition: true //options: true makes it stick(fixed position) on scroll
32: });
33: });
34: });
35: function ShowHideObjects(toShowObject, toHideObject) {
36: if (toShowObject != '') {
37: $("[id$=" + toShowObject + "]").show()
38: }
39: if (toHideObject != '') {
40: $.each(toHideObject, function (index, value) {
41: //(index == 0) ? ($("[id$=" + toShowObject + "]").show() , $("[id$=" + value + "]").hide()) : $("[id$=" + value + "]").hide
42: $("[id$=" + value + "]").hide();
43: });
44: }
45: }
46: function ToggleObject(toToggleObject) {
47: $("[id$=" + toToggleObject + "]").toggle();
48: }
49: function SetControlFocus(toNavigate) {
50: $("[id$=" + toNavigate + "]").slideto
51: ({
52: highlight_duration: 'slow',
53: slide_duration: 500
54: });
55: }
56:
This code works if i didn't put the dj accordion but when i added it javascript console prompts that validateengine method cannot be foudn also the anytime picker. here is the list of my imports
1:
2: <link href="css/maininterface.css" rel="stylesheet" type="text/css" />
3: <link href="css/validationEngine.jquery.css" rel="stylesheet" type="text/css" />
4: <link href="css/questionnaire.css" rel="stylesheet" type="text/css" />
5: <link href="css/anytime.css" rel="stylesheet" type="text/css" />
6: <link href="css/ui-lightness/jquery-ui-1.8.13.custom.css" rel="stylesheet" type="text/css" />
7:
8:
9: <script src="scripts/jquery-1.4.2.js" type="text/javascript">script>
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
Uncaught TypeError: Object #