Javascript.RU

Создать новую тему Ответ
 
Опции темы Искать в теме
  #1 (permalink)  
Старый 30.01.2013, 22:58
Новичок на форуме
Отправить личное сообщение для mario03 Посмотреть профиль Найти все сообщения от mario03
 
Регистрация: 30.01.2013
Сообщений: 3

Просмотрщик файлов на extjs 3
Здравствуйте! очень нужна ваша помощь. в эксте я не селён поэтому заранее извиняюсь. Имеется просмотрщик файлов на екст 4 нужно перевести его на екст 3. серверная часть одна и та же меняется только клиентская однако в первом случае все работает, а во втором даже запрос не отправляется заранее спасибо

//extjs 4
store_dir = Ext.create('Ext.data.TreeStore', {
proxy: {
type: 'ajax',
url: 'get_dir.php'
}
});

tree_dir = Ext.create('Ext.tree.Panel', {
title: 'Localhost Directory',
rootVisible: false,
store: store_dir,
split: true,
region: 'west',
collapsible: true,
floatable: false,
width: 200,
useArrows: true,
});

//extjs 3
var tree = new Ext.tree.TreePanel({
useArrows: true,
autoScroll: true,
animate: true,
enableDD: true,
containerScroll: true,
border: false,
// auto create TreeLoader
dataUrl: 'get_dir.php',
root: {
nodeType: 'async',
text: 'root',
draggable: false,
id: 'source'
}
});
tree.getRootNode().expand(true);

//get_dir.php

class MyDirectory {

public $json = '[';

public function get_children($dir, $child) {
$dh = opendir($dir);
while (($file = readdir($dh)) !== false) {
if ($file != '.' AND $file != '..' ) {
if (filetype($dir . $file) == 'dir') {
// must be checked if this folder have other subfolder
if ($this->count_sub_dir($dir . $file . '/') == 0) {
$this->json .= '{text:"'.$file.'", leaf: true, id: "'.$dir . $file.'"},';
} else {
$this->json .= '{text:"'.$file.'", id: "'.$dir . $file.'", children: [';
$this->get_children($dir . $file . '/', true);
}
}
}
}
if ($child) {
$this->json .= ']},';
}
closedir($dh);
}

public function count_sub_dir($dir) {
$dh = opendir($dir);
$countdir = 0;
while (($file = readdir($dh)) !== false) {
if ($file != '.' AND $file != '..' ) {
if (filetype($dir . $file) == 'dir') {
$countdir++;
}
}
}
closedir($dh);
return $countdir;
}
}

$host_dir = $_SERVER['DOCUMENT_ROOT']."/";

$dir = new MyDirectory();

$dir->get_children($host_dir, false);

$dir->json .= ']';
$dir->json = str_replace(",]", "]", $dir->json);

echo($dir->json);

?>
Ответить с цитированием
Ответ



Опции темы Искать в теме
Искать в теме:

Расширенный поиск


Похожие темы
Тема Автор Раздел Ответов Последнее сообщение
Vacancy: ExtJS developer, full time, telecommute position samuraijack ExtJS 2 26.12.2013 04:29
ExtJS developer, full time, telecommute position samuraijack Работа 1 12.03.2013 13:21
ExtJs - Перевод книги "Lerning ExtJs" MaXyC ExtJS 17 22.06.2012 17:41
SWFUpload - отображение выбранных файлов Барин AJAX и COMET 2 17.07.2011 10:07
Москва, ищу JavaScript программиста отлично знающего ExtJS, от 10 USD / час. maximgb Работа 3 03.08.2010 14:34