diff --git a/app/webroot/js/dreamjob.js b/app/webroot/js/dreamjob.js
index df5fea2..d8bed27 100755
--- a/app/webroot/js/dreamjob.js
+++ b/app/webroot/js/dreamjob.js
@@ -2,230 +2,252 @@
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
- var global_load = null;
+var global_load = null;
!function($) {
- $(function() {
- $body = $("body");
- $(document).on({
- ajaxStart: function() { $body.addClass("loading"); },
- ajaxStop: function() { $body.removeClass("loading"); }
- });
- $(window).bind('popstate',function(evt){
- console.log(evt.target.pageurl);
- console.log(evt);
- if(evt.originalEvent.state !== null) {
- load(location.href,{'history':false},false);
- }
- });
- $("#popup").modal({'remote':false,'show':false});
- $("#popup").on('show.bs.modal',function(e){
- $.ajax({url:$(e.relatedTarget).attr("href"),success:function(data){
- $("#popup .modal-title").html($(e.relatedTarget).attr("title"));
- $("#popup .modal-body").html($("#container div.box",data).html());
- } ,error:function(data){}});
- });
- function stopLoad(e){
- if (!e)
- e = window.event;
- if (e.preventDefault)
- e.preventDefault();
- if (e.stopPropagation) {
- e.stopPropagation();
- }else{
- e.cancelBubble = true;
- }
- }
- function event(where){
- /* Hotfix Ticket: 215*/
- $(where+' img').each(function(){ $(this).attr('src',$(this).attr('src')+ '?' + (new Date()).getTime()); });
-
- $("#alert .alert").alert();
- $(where+' textarea').wysihtml5();
- $(where+' select').each(function(){
- $(this).select2({allowClear: true});
- });
- $(where+' .dropdown-toggle').dropdown();
- $(where+" a").tooltip();;
- $(where+" a").each(function(that){
- if($(this).attr("rel")!=="external" && $(this).attr("ref")!=="eventOff" && !$(this).parents('ul').hasClass("wysihtml5-toolbar") && !$(this).hasClass(".select2-choice") && !$(this).parents('form').hasClass('tableForm'))
- $(this).click(function(e){
- load($(this).attr('href'),{},($(this).attr('rel')=="tab"));
- return false;
- });
- });
-
- $(where+" form").submit(function(e){
- if(!$(this).hasClass("hide-form") && $(this).attr('enctype')!='multipart/form-data' ){
- $(":input[ name *= '_wysihtml5_mod' ]",this).remove();
- //stopLoad(e);
- if($(this).attr("back"))
- back=window.location.href;
- else
- back=null;
- load($(this).attr("action"),{data:$(this).serialize(), type:$(this).attr("method"),back:back},($(this).attr('rel')=="tab"));
- return false;
- }
- });
-
- $(where+" form[ enctype *= 'multipart/form-data' ]").each(function(evt){
- if (!$('#fileUpload').length)
- $('body').append('');
- $(this).attr('target','fileUpload');
- $(":input[ name *= '_wysihtml5_mod' ]",this).remove();
- $(this).submit(function(){
- frame = $('#fileUpload').load(function(){
- setContent(frame.contents().find('body').html());
- frame.unbind('load');
- setTimeout(function (){frame.html('');}, 1);
- });
- });
- });
-
- $(where+" form.tableForm tbody").each(function(evt){
- var that = this;
- var newRow = $(".new",this).html();
- $(that).change(function(){
- tosave = true;
- $("tr",that).each(function(evt){
- see = true;
- $(":input:not([ type = 'hidden' ] )",this).each(function(){
- if(see){
- see = $(this).val()=='';
- }
- });
- if(see && $(this).attr("data")=="set"){
- $(this).attr("data","");
- $(this).remove();
- }
- if(!see && $(this).attr("data")!="set"){
- $(this).attr("data","set");
- $("tr",that).removeClass("new");
- $(that).append("
"+newRow+"
");
- evet();
- }
-
- save = true;
- that2=this;
- $(":input:not([ type = 'hidden' ] )",this).each(function(){
- if(save && !$(that2).hasClass("new")){
- save = $(this).val()!='';
- }
- });
- if(tosave && !$(that2).hasClass("new")){
- tosave = save;
- }
- });
- if(tosave)
- //console.log("sendTosave");
- saveForm(that);
- });
- //ZUOFT WIRD GESPEICHERT
-
- function evet(){
- $("tr:not(.new)",that).each(function(){
- var that2 = this;
- $(".btn-del",this).unbind("click").click(function(evt){
- $(that2).remove();
- saveForm(that);
- });
- });
- }
- evet();
- });
-
- function saveForm(here,back){
- i = 0;
- $(":input[ name *= '_wysihtml5_mod' ]",$(here).parents('form')).remove();
- //$(":input[ class *= 'select2-focusser' ]",$(here).parents('form')).remove();
- $("tbody tr.new",$(here).parents('form')).remove();
- $("tbody tr",$(here).parents('form')).each(function(){
- $(":input[name]",this).each(function(){
- str = $(this).attr("name").replace(/data\[(.*?)\]\[.*?\]\[(.+)\]/g,'data[$1]['+i+'][$2]');
- $(this).attr("name",str);
- });
- i++;
- });
- load($(here).parents("form").attr("action"),{back:back,data:$(here).parents("form").serialize(), type:'POST'},false);
- }
-
-
- $($(where+" form.tableForm .label.edit").parents('form.tableForm a')).click(function(){saveForm('form.tableForm tbody',$(this).attr('href'));return false;});
- //$(where+" form label.has-error").parent(".form-group").addClass("has-error")
+ $(function() {
+ $body = $("body");
+ $(document).on({
+ ajaxStart: function() {
+ $body.addClass("loading");
+ },
+ ajaxStop: function() {
+ $body.removeClass("loading");
+ }
+ });
+ $(window).bind('popstate', function(evt) {
+ console.log(evt.target.pageurl);
+ console.log(evt);
+ if (evt.originalEvent.state !== null) {
+ load(location.href, {'history': false}, false);
+ }
+ });
+ $("#popup").modal({'remote': false, 'show': false});
+ $("#popup").on('show.bs.modal', function(e) {
+ $.ajax({url: $(e.relatedTarget).attr("href"), success: function(data) {
+ $("#popup .modal-title").html($(e.relatedTarget).attr("title"));
+ $("#popup .modal-body").html($("#container div.box", data).html());
+ }, error: function(data) {
+ }});
+ });
+ function stopLoad(e) {
+ if (!e)
+ e = window.event;
+ if (e.preventDefault)
+ e.preventDefault();
+ if (e.stopPropagation) {
+ e.stopPropagation();
+ } else {
+ e.cancelBubble = true;
+ }
}
- function setContent(data,back,tab,backignore){
- alert = data.split('')[1].split('')[0];
- $('#alert').removeClass('old');
- if( alert.trim().length > 0){
- $('#alert').html(alert);
- }else if(!backignore){
- $('#alert').addClass('old');
+ function event(where) {
+ /* Hotfix Ticket: 215*/
+ $(where + ' img').each(function() {
+ $(this).attr('src', $(this).attr('src') + '?' + (new Date()).getTime());
+ });
+
+ $("#alert .alert").alert();
+ $(where + ' textarea').wysihtml5();
+ $(where + ' select').each(function() {
+ $(this).select2({allowClear: true});
+ });
+ $(where + ' .dropdown-toggle').dropdown();
+ $(where + " a").tooltip();
+ ;
+ $(where + " a").each(function(that) {
+ if ($(this).attr("rel") !== "external" && $(this).attr("ref") !== "eventOff" && !$(this).parents('ul').hasClass("wysihtml5-toolbar") && !$(this).hasClass(".select2-choice") && !$(this).parents('form').hasClass('tableForm'))
+ $(this).click(function(e) {
+ stopLoad(e);
+ load($(this).attr('href'), {}, ($(this).attr('rel') == "tab"));
+ return false;
+ });
+ });
+
+ $(where + " form").submit(function(e) {
+ if (!$(this).hasClass("hide-form") && $(this).attr('enctype') != 'multipart/form-data') {
+ stopLoad(e);
+ $(":input[ name *= '_wysihtml5_mod' ]", this).remove();
+ //stopLoad(e);
+ if ($(this).attr("back"))
+ back = window.location.href;
+ else
+ back = null;
+ load($(this).attr("action"), {data: $(this).serialize(), type: $(this).attr("method"), back: back}, ($(this).attr('rel') == "tab"));
+ return false;
}
-
- if(back){
- load(back,{'backignore':true},tab);
- }else if(tab){
- navbar = data.split('')[1].split('')[0];
- $('#tab').html(navbar);
- event("#tab");
- }else{
- navbar = data.split('')[1].split('')[0];
- $('#navbar').html(navbar);
- event("#navbar");
-
- container = data.split('')[1].split('')[0];
- $('#container').html(container);
- event("#container");
-
- barright = data.split('')[1].split('')[0];
- $('#barright').html(barright);
- event("#barright");
-
- barleft = data.split('')[1].split('')[0];
- $('#barleft').html(barleft);
- event("#barleft");
- }
- if(!back){
- navbar = data.split('')[1].split('')[0];
- eval($(navbar).html());
+ });
+
+ $(where + " form[ enctype *= 'multipart/form-data' ]").each(function(evt) {
+ stopLoad(evt);
+ if (!$('#fileUpload').length)
+ $('body').append('');
+ $(this).attr('target', 'fileUpload');
+ $(":input[ name *= '_wysihtml5_mod' ]", this).remove();
+ $(this).submit(function() {
+ frame = $('#fileUpload').load(function() {
+ setContent(frame.contents().find('body').html());
+ frame.unbind('load');
+ setTimeout(function() {
+ frame.html('');
+ }, 1);
+ });
+ });
+ });
+
+ $(where + " form.tableForm tbody").each(function(evt) {
+ var that = this;
+ var newRow = $(".new", this).html();
+ $(that).change(function(e) {
+ stopLoad(e);
+ tosave = true;
+ $("tr", that).each(function(evt) {
+ see = true;
+ $(":input:not([ type = 'hidden' ] )", this).each(function() {
+ if (see) {
+ see = $(this).val() == '';
+ }
+ });
+ if (see && $(this).attr("data") == "set") {
+ $(this).attr("data", "");
+ $(this).remove();
+ }
+ if (!see && $(this).attr("data") != "set") {
+ $(this).attr("data", "set");
+ $("tr", that).removeClass("new");
+ $(that).append("" + newRow + "
");
+ evet();
+ }
+
+ save = true;
+ that2 = this;
+ $(":input:not([ type = 'hidden' ] )", this).each(function() {
+ if (save && !$(that2).hasClass("new")) {
+ save = $(this).val() != '';
+ }
+ });
+ if (tosave && !$(that2).hasClass("new")) {
+ tosave = save;
+ }
+ });
+ if (tosave)
+ //console.log("sendTosave");
+ saveForm(that);
+ });
+ //ZUOFT WIRD GESPEICHERT
+
+ function evet() {
+ $("tr:not(.new)", that).each(function() {
+ var that2 = this;
+ $(".btn-del", this).unbind("click").click(function(evt) {
+ $(that2).remove();
+ saveForm(that);
+ });
+ });
}
+ evet();
+ });
+
+ function saveForm(here, back) {
+ i = 0;
+ $(":input[ name *= '_wysihtml5_mod' ]", $(here).parents('form')).remove();
+ //$(":input[ class *= 'select2-focusser' ]",$(here).parents('form')).remove();
+ $("tbody tr.new", $(here).parents('form')).remove();
+ $("tbody tr", $(here).parents('form')).each(function() {
+ $(":input[name]", this).each(function() {
+ str = $(this).attr("name").replace(/data\[(.*?)\]\[.*?\]\[(.+)\]/g, 'data[$1][' + i + '][$2]');
+ $(this).attr("name", str);
+ });
+ i++;
+ });
+ load($(here).parents("form").attr("action"), {back: back, data: $(here).parents("form").serialize(), type: 'POST'}, false);
}
- function setContentError(data,back,tab){
- alert = ""+data.statusText+
- ""
- + "
";
- $('#alert').removeClass('old');
+
+
+ $($(where + " form.tableForm .label.edit").parents('form.tableForm a')).click(function() {
+ saveForm('form.tableForm tbody', $(this).attr('href'));
+ return false;
+ });
+ //$(where+" form label.has-error").parent(".form-group").addClass("has-error")
+ }
+ function setContent(data, back, tab, backignore) {
+ alert = data.split('')[1].split('')[0];
+ $('#alert').removeClass('old');
+ if (alert.trim().length > 0) {
$('#alert').html(alert);
- event("#alert");
- $('#container').html(data.responseText);
- event("#container");
+ } else if (!backignore) {
+ $('#alert').addClass('old');
}
- function load(pageurl,conf,tab){
+
+ if (back) {
+ load(back, {'backignore': true}, tab);
+ } else if (tab) {
+ navbar = data.split('')[1].split('')[0];
+ $('#tab').html(navbar);
+ event("#tab");
+ } else {
+ navbar = data.split('')[1].split('')[0];
+ $('#navbar').html(navbar);
+ event("#navbar");
+
+ container = data.split('')[1].split('')[0];
+ $('#container').html(container);
+ event("#container");
+
+ barright = data.split('')[1].split('')[0];
+ $('#barright').html(barright);
+ event("#barright");
+
+ barleft = data.split('')[1].split('')[0];
+ $('#barleft').html(barleft);
+ event("#barleft");
+ }
+ if (!back) {
+ navbar = data.split('')[1].split('')[0];
+ eval($(navbar).html());
+ }
+ }
+ function setContentError(data, back, tab) {
+ alert = "" + data.statusText +
+ ""
+ + "
";
+ $('#alert').removeClass('old');
+ $('#alert').html(alert);
+ event("#alert");
+ $('#container').html(data.responseText);
+ event("#container");
+ }
+ function load(pageurl, conf, tab) {
data = {};
typemethode = "GET";
back = false;
backignore = false;
history = true;
- if(conf['data'])
+ if (conf['data'])
data = conf['data'];
- if(conf['type'])
+ if (conf['type'])
typemethode = conf['type'];
- if(conf['back'] && conf['back'].indexOf("logout")== -1 && conf['back'].indexOf("login")== -1 )
+ if (conf['back'] && conf['back'].indexOf("logout") == -1 && conf['back'].indexOf("login") == -1)
back = conf['back'];
- if(conf['backignore'])
+ if (conf['backignore'])
backignore = conf['backignore'];
- if(conf['history'])
+ if (conf['history'])
history = conf['history'];
-
+
//e.preventDefault();
/*
- if uncomment the above line, html5 nonsupported browers won't change the url but will display the ajax content;
- if commented, html5 nonsupported browers will reload the page to the specified link.
- */
- $.ajax({url:pageurl,data:data,type:typemethode,success:function(data){setContent(data,back,tab,backignore);} ,error:function(data){setContentError(data,back,tab);}});
- if(history && pageurl!=window.location){
- window.history.pushState({path:pageurl},'',pageurl);
+ if uncomment the above line, html5 nonsupported browers won't change the url but will display the ajax content;
+ if commented, html5 nonsupported browers will reload the page to the specified link.
+ */
+ $.ajax({url: pageurl, data: data, type: typemethode, success: function(data) {
+ setContent(data, back, tab, backignore);
+ }, error: function(data) {
+ setContentError(data, back, tab);
+ }});
+ if (history && pageurl != window.location) {
+ window.history.pushState({path: pageurl}, '', pageurl);
}
- };
+ }
+ ;
event("");
global_load = load;
});