1. 29 Jun, 2015 2 commits
  2. 26 Jun, 2015 2 commits
  3. 01 Jun, 2015 1 commit
  4. 29 May, 2015 1 commit
  5. 28 May, 2015 1 commit
  6. 27 May, 2015 1 commit
  7. 23 May, 2015 1 commit
  8. 22 May, 2015 1 commit
    • Ad Schellevis's avatar
      (mvc) add support class for easy datagrid usage · a6198444
      Ad Schellevis authored
      // create a new model
      $model = new Model();
      // link model to support class
      $grid = new UIModelGrid($model->container->arrayTypeObject);
      // fetch data and return into array which our frontend grid component can use
      $result = $grid->fetch($fields, $itemsPerPage, $currentPage, $sortBy, $sortDescending, $searchPhrase);
      a6198444