Archive for the ‘ Web ’ Category
A web-based personal organizer which is designed and programmed by me is on the way… You can check out the video to have some ideas on it. For security issues, I do not want to give the project’s name and domain. To have the project file, please contact info@farkow.com (available only for companies)[ READ MORE ]
Work on The United Nations Women’s Shelter Project for Turkey just started. Documentation and project plan is in progress[ READ MORE ]
This is small script which is like JQuery’s accordion. Easy, small, do not need to run in $(document).ready() HTML PART <div id="cont1"> <div class="slides"> <h3>title</h3> <div class="content"> ... </div> ... </div> </div> — JS PART $("#cont1 div.content").hide(); $("#cont1 div.content:first").show(); $("#cont1 h3").bind("click", function() { if ( $(this).next().css("display") == 'none' ) { $("#cont1 div.content").hide(); $(this).next().slideDown(250); } }); [ READ MORE ]
Here, we will make the selectable component for jQuery UI “single selectable” First of all, we may disable dragging mouse: Delete the following part in your jquery-ui.js for “selectable” part; _mouseDrag:function(d){var f=this;this.dragged=true;if(!this.options.disabled){var c=this.options, b=this.opos[0],g=this.opos[1],h=d.pageX,i=d.pageY;if(b>h){var j=h;h=b;b=j}if(g>i){j=i;i=g;g=j}this.helper.css({left:b,top:g,width:h-b,height:i-g});this.selectees.each(function(){var a=e.data(this,"selectable-item");if(!(!a||a.element==f.element[0])){var k=false;if(c.tolerance=="touch")k=!(a.left>h||a.right<b ||a.top>i||a.bottom<g );else if(c.tolerance=="fit")k=a.left>b&&a.right<h &&a.top>g&&a.bottom<i ;if(k){if(a.selected){a.$element.removeClass("ui-selected");a.selected=false}if(a.unselecting){a.$element.removeClass("ui-unselecting"); a.unselecting=false}if(!a.selecting){a.$element.addClass("ui-selecting");a.selecting=true;f._trigger("selecting",d,{selecting:a.element})}}else{if(a.selecting)if(d.metaKey&&a.startselected){a.$element.removeClass("ui-selecting");a.selecting=false;a.$element.addClass("ui-selected");a.selected=true}else{a.$element.removeClass("ui-selecting");a.selecting=false;if(a.startselected){a.$element.addClass("ui-unselecting");a.unselecting=true}f._trigger("unselecting",d,{unselecting:a.element})}if(a.selected)if(!d.metaKey&& !a.startselected){a.$element.removeClass("ui-selected");a.selected=false;a.$element.addClass("ui-unselecting");a.unselecting=true;f._trigger("unselecting",d,{unselecting:a.element})}}}});return false}}, New one will be like that for “selectable” part[ READ MORE ]
What is project “YerelBilgi”? The project is designed for Turkey Internal Affairs to gather any information from governorships, towns, city halls, villages etc… The project’s headsman is Turksat , main and most part of it is coded by me. About the Project Editors can create a dataset and add any question with types into it [ READ MORE ]