Subversion-Projekte lars-tiefland.ci

Revision

Revision 878 | Zur aktuellen Revision | Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
875 lars 1
    $(function(){
2
        $('.add_image').button({
3
            icons:{
4
                primary:'ui-icon-plus'
5
            }
6
        }).click(add_images);
7
        $('.add_folder').button({
8
            icons:{
9
                primary:'ui-icon-plus'
10
            }
11
        }).click(add_folder);
12
        $('.del_image').button({
13
            icons:{
14
                primary:'ui-icon-trash'
15
            }
16
        });
17
 
18
        $('.search').button({
19
            icons:{
20
                primary: "ui-icon-search"
21
            }
22
        }).click(search);
23
 
24
        $('#upload_dlg .nav').css("cursor","pointer").click(nav);
25
 
26
        function nav()
27
        {
28
            f_name=$(this).attr("data-fname");
29
            l_id=$('#lID').val();
30
            l_type=$('#lType').val();
31
            $('#upload_dlg').load("/Online-Shop/upload.php?folder="+f_name+"&l_type="+l_type+"&l_id="+l_id);
32
        }
33
 
34
        $('#upload_dlg').dialog({
35
            autoOpen: false,
36
            modal:true,
37
            width:"95%",
38
            height:600,
39
            resizable:false,
40
            close:function(){
41
                l_id=$('#lID').val();
42
                l_type=$('#lType').val();
43
                $('#bildverwaltung').load("/Online-Shop/bilder.php?l_id="+l_id+"&l_type="+l_type);
44
            },
45
            buttons:{
46
                "Abbrechen":function()
47
                {
48
                    l_id=$('#lID').val();
49
                    l_type=$('#lType').val();
50
                    $('#bildverwaltung').load("/Online-Shop/bilder.php?l_id="+l_id+"&l_type="+l_type);
51
                    $(this).dialog("close");
52
                }
53
            }
54
        });
55
 
56
        $('#folder_dialog').dialog({
57
            autoOpen:false,
58
            modal:true,
59
            width:800,
60
            resizable:false,
61
            buttons:{
62
                "Ordner anlegen":function(){
63
                    $.post("mkdir.php",$('#create_folder').serializeArray(),function(html){
64
                        //alert(html);
65
                    });
66
                    $(this).dialog("close");
67
                },
68
                "Abbruch": function(){
69
                    $(this).dialog("close");
70
                }
71
            }
72
        })
73
 
74
        function search(e)
75
        {
76
            e.preventDefault();
77
            $('#search_media').submit();
78
        }
79
 
80
        function add_images(e)
81
        {
82
            e.preventDefault();
83
            $('#upload_dlg').dialog('open');
84
        }
85
 
86
        function add_folder(e)
87
        {
88
            e.preventDefault();
89
            $('#folder_dialog').dialog("open");
90
        }
91
        $('#taskResult').dialog({
92
            width:800,
93
            autoOpen:false,
94
            modal:true,
95
            resizable:false,
96
            buttons:[{
97
                text:"OK",
98
                icons: {
99
                    primary: "ui-icon-check"
100
                },
101
                showText: false,
102
                click:function()
103
                {
104
                    $('#taskResult').dialog("close");
105
                }
106
            }]
107
        });
108
        $('#taskForm').dialog({
109
            width:800,
110
            //height:600,
111
            autoOpen:false,
112
            modal:true,
113
            resizable:false,
114
            buttons:[{
115
                text:"speichern",
116
                icons: {
117
                    primary: "ui-icon-check"
118
                },
119
                showText: false,
120
                click:function()
121
                {
122
                    $('#taskResult').load("scheduler.php",$('#scheduler_form').serializeArray(),function(){
123
                        $('#taskResult').dialog("open");
124
                    })
125
                    $('#taskForm').dialog("close");
126
                }
127
            },
128
            {
129
                text:"verwerfen",
130
                icons: {
131
                    primary: "ui-icon-close"
132
                },
133
                showText: false,
134
                click:function(){
135
                    $(this).dialog("close");
136
                }
137
            }]
138
        })
139
/*        $( "#taskForm" ).dialog({
140
          buttons: [
141
            {
142
              text: "speicehrn",
143
              icons: {
144
                primary: "ui-icon-heart"
145
              },
146
              click: function() {
147
                $( this ).dialog( "close" );
148
              }
149
 
150
              // Uncommenting the following line would hide the text,
151
              // resulting in the label being used as a tooltip
152
            }
153
          ]
154
        });*/
155
        $('.task_edit').click(edit_task);
156
        $('.newTask').click(newTask);
157
    });
158
 
159
    function newTask(e)
160
    {
161
        e.preventDefault();
162
        url="/toolbox/scheduler.php?mode=edit";
163
        $.get(url,function(html)
164
        {
165
            $('#taskForm').html(html).dialog("open");
166
        });
167
    }
168
    function edit_task(e)
169
    {
170
        e.preventDefault();
171
        tIdArr=$(this).attr("id").split("_");
172
        tId=tIdArr[1];
173
        url="/toolbox/scheduler.php?mode=edit&id="+tId;
174
        $.get(url,function(html)
175
        {
176
            $('#taskForm').html(html).dialog("open");
177
        });
178
    }