diff options
Diffstat (limited to 'codebase/Dhtmlx/Connector/GridConnector.php')
-rw-r--r-- | codebase/Dhtmlx/Connector/GridConnector.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/codebase/Dhtmlx/Connector/GridConnector.php b/codebase/Dhtmlx/Connector/GridConnector.php index d912f4f..3c2b2f6 100644 --- a/codebase/Dhtmlx/Connector/GridConnector.php +++ b/codebase/Dhtmlx/Connector/GridConnector.php @@ -1,9 +1,11 @@ <?php - namespace Dhtmlx\Connector; +use Dhtmlx\Connector\Data\DataConfig; +use Dhtmlx\Connector\Data\DataRequestConfig; + /*! Connector for the dhtmlxgrid **/ -class GridConnector extends Connector{ +class GridConnector extends Connector { /*! constructor @@ -18,8 +20,8 @@ class GridConnector extends Connector{ name of class which will be used for dataprocessor calls handling, optional, DataProcessor class will be used by default. */ public function __construct($res,$type=false,$item_type=false,$data_type=false,$render_type=false){ - if (!$item_type) $item_type="Dhtmlx\\Connector\\GridDataItem"; - if (!$data_type) $data_type="Dhtmlx\\Connector\\Data\\GridDataProcessor"; + if (!$item_type) $item_type="Dhtmlx\\Connector\\Data\\GridDataItem"; + if (!$data_type) $data_type="Dhtmlx\\Connector\\DataProcessor\\GridDataProcessor"; if (!$render_type) $render_type="Dhtmlx\\Connector\\Output\\RenderStrategy"; parent::__construct($res,$type,$item_type,$data_type,$render_type); } |