The following debugging information was generated by Atom Beautify
on Mon Apr 18 2016 12:02:58 GMT+0700 (RTZ 6 (зима))
.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var field = $('#weloveit_create_pm_to'), timer; | |
field.on('keyup', function(){ | |
if (this.value.length > 3) { //Минимальный размер текста в поле 3 символа | |
clearTimeout(timer); //Убиваем предыдущий таймер | |
timer = setTimeout(function() { | |
//Делаем что-нибудь. Например запрос JSON даных с сервера | |
}, 2000); //Задержка вполенения. Дает возможность пользователю быстро ввести весь текст и не инициировать при этом запросы к БД | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public function getSubOrgsForTranspnakl(Entity $topitem) | |
{ | |
$childrenArray = array(); | |
$iterate = true; | |
$listOfParents = array(); | |
$listOfParents = array_push($listOfParents, $topitem); | |
while ($iterate){ | |
$q = $this | |
->createQueryBuilder('o') |