Questions tagged [agiletoolkit]

Agile Toolkit is a PHP framwework

Agile Toolkit is an object-oriented web development framework for PHP.

75 questions
1
vote
2 answers

Agiletoolkit Maximum number of failed login attempts

The agiletoolkit Auth/basic class allow to try to login without any limitation. And i'm searching a way to limit the number of failed login attempt, i've tried to override some methods of this class but it use ajax reloading so php code is not…
1
vote
1 answer

using agile toolkit like other frameworks work?

is there any way to use agile toolkit without using js features? I know that we can disable js lib (jUI) but I want to have normal CRUD and grids(without jquery) In other word, can we use agile as if it was like other frameworks?
webelizer
  • 418
  • 2
  • 11
1
vote
2 answers

validateField doesn't work with models

I want to use validateField with models but it says Method is not defined for this object! I code like this: $user_payment=$this->add("Model_Payment"); $user_payment->getField("amount") ->validateNotNull() …
webelizer
  • 418
  • 2
  • 11
1
vote
1 answer

how to load a page with GET parameters in grid expander?

As you know we can load a Page in expander in this way: $g->addColumn('expander','tickets'); But in my situation, the Tickets page have some parameters like this: ?page=tickets&tid=1 how can I load this page with tid parameter?
webelizer
  • 418
  • 2
  • 11
1
vote
1 answer

how to use "setFieldHint" in CRUD form?

I want to add hint to the CRUD form but I receive error. $temp_crud->getElement('pin')->setFieldHint('the hint');
webelizer
  • 418
  • 2
  • 11
1
vote
1 answer

Agile Toolkit - Grid is not reloading - what am I missing?

I had grid reloading working after form submit in a popup, but now I've changed stuff around and for some reason it stopped working and can't figure out why... EDIT: See comment below... Basically, the 'details' page used to not be a subpage of this…
1
vote
0 answers

Agile toolkit not connecting to my database

Maybe I'm doing this wrong or maybe I'm making this more complicated than it should be? I'm not sure but I downloaded Agile toolkit to make a basic database report grid that some less tech savvy people can look at nicely as I was just going to make…
Alex Howell
  • 89
  • 2
  • 14
1
vote
1 answer

ATK4 Quicksearch case-sensitive?

I'm using ATK4.2.4, I've got a grid with a QuickSearch but it appears to be case-sensitive. However, looking at the example here: http://agiletoolkit.org/codepad/gui/grid it does not behave case-sensitive. I've tried feeding my grid from a model and…
1
vote
1 answer

Agile Example Gone Wrong

I'm using Agile Toolkit version 4.2.4 trying to implement the Exchanging rows between grids example found here: https://agiletoolkit.org/doc/grid/interaction I have created the TSGrid class with the following code: class TSGrid extends Grid { …
1
vote
2 answers

How do I sort and alphanumeric field in AgileToolkit?

I have a small app and I need to fix a couple of issues: Need to set a field with a default sort order. This is the code I have right now $crud->grid->getColumn('JOB_NO')->makeSortable(); The grid displays the sort icon but I want to set the…
Trevor
  • 11
  • 1
  • 4
1
vote
1 answer

Agile Toolkit manipulating Grid column content

Just started using ATK4 and appreciating it very much so far, but not sure how to do this... What I am trying to accomplish: I am outputting a query's results to a grid, one of the fields is 'status', the data will either be '-1' or '1'. Instead of…
1
vote
1 answer

Agile Toolkit 500 error after install

I have installed agile toolkit on CentOS 6(php 5.3) lamp stack and when I pull up the index.php start page, it gives me a 500 error.
Ralanyo
  • 61
  • 9
1
vote
2 answers

Showing a lister when grid button clicked? (in Agile Toolkit)

I have a grid that have buttons in one of it's columns like this: how can I show a lister or a new grid when the button clicked? $grid=$page->add('Grid'); …
webelizer
  • 418
  • 2
  • 11
1
vote
1 answer

AGILETOOLKIT :: How do you add drop-downs on CRUD popup?

I have 3 tables namely users, items and purchase. Purchase hasMany('Users') and hasMany('Item'). Now when you class Model_Purchase extends Model_Table { public $table = 'purchase'; function init(){ parent::init(); …
Zeeshan Abbas
  • 821
  • 6
  • 20
0
votes
2 answers

Agiletoolkit can't connect to database

I ,installed agiletoolkit yesterday because I like the look of what they offer regarding GUI development. Unfortunately I could not connect to my MySQL databases. SQLException Database connection failed MySQL error: php_network_getaddresses:…