Questions tagged [agiletoolkit]

Agile Toolkit is a PHP framwework

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

75 questions
1
vote
1 answer

WHERE Equivalents for SQL 'BETWEEN' and 'IN' in Agile Toolkit ATK4 DSQL

I need help in ATK4 DSQL where i would like to retrieve only a specific set of rows from my Employee Model Table class, using a Dynamic SQL. can i generate an SQL BETWEEN or an IN clause in my WHERE statement such that it would 'somehow' look like…
1
vote
1 answer

ATK not running out of the box

I'm very new to all this so please be gentle with me. I've been teaching myself PHP and decided to check out some application frameworks and decided Agile Toolkit seemed to offer some of the best features. However, having unzipped the install file…
brianv
  • 21
  • 2
1
vote
0 answers

Agile toolkit ui with eclipse oxygen

Hi i am a beginner in php. i have able to successfully run my hello world program with eclipse oxygen and php builtin server. I want to use agile ui in my current php project. i am putting the agile toolkit folder in my project folder. and when i…
tushar sharma
  • 105
  • 2
  • 10
1
vote
1 answer

Is it possible to use Agile UI as a view component of Yii2 application?

I saw the schema https://github.com/atk4/ui#scope-and-goals-of-agile-ui but it still unclear for me, how I can make ActiveForm or GridView (for example) using this toolkit? Are there some Yii components or practice code examples?
Mik
  • 374
  • 2
  • 13
1
vote
1 answer

How do I get the HTML from agile toolkit virtual page

I'm using agile toolkit 4.3.2. I have a virtual page that contains a form. I created a button: $this->button = $this->addButton('') ->setAttr('title', 'Show Virtual Page'); And I binded the virtual page to this button: $vp =…
Pascut
  • 3,291
  • 6
  • 36
  • 64
1
vote
1 answer

Agile Toolkit with custom CSS and HTML markup?

I would be interested in trying Agile Toolkit however I hate the CSS framework it uses and also the html markup.. is there any means to use a custom CSS framework like jeet and also to change the html cluttered markup.. Can you hack away at the…
Hamburgersn Heroin
  • 207
  • 1
  • 2
  • 12
1
vote
1 answer

Models data union PHP ATK

So I have only 1 model and 10 tables for example, I want to bring all the data from the tables into my 1 model, so I can use the Grid/Crud search/paginator etc. If I use setSource on the grid (and not setModel), I lose pagination, quick and…
Ryko
  • 11
  • 3
1
vote
1 answer

Does ATK4 have caching support?

I've gone through the documentation on ATK4, trying to find a reference point how to handle caching - partial or full page. Seems like there is no entry on the matter. Strange from a framework that is built for scalability. Is there a way to cache…
Máté
  • 2,294
  • 3
  • 18
  • 25
1
vote
1 answer

'do_replace()' not working?

while trying ATK4 I've found a problem: $this->api->db->dsql()->table('person')->set('id', 1)->set('name', 'Test user')->do_replace(); This is not working. Then I looked a little bit deeper in ATK4 source and found in…
ATL
  • 25
  • 5
1
vote
1 answer

DropDown contents depending on multiple other DropDown values

I'm again. I've seen many threads which asking, how to create Dropdowns with content depending of a other Dropdown value. These logic works also for me. But now I have the problem, that the content of a Dropdown depends of the selection/value of 2…
ATL
  • 25
  • 5
1
vote
1 answer

Remove 'Changes on the form will be lost' message atk4

I have a page with two components. One of them is a form that shows data fields from a model. The other component has a button that reloads the form with another id of the model associated. How can I disable the warning message of unsaved changes…
Javier del Saz
  • 846
  • 1
  • 9
  • 16
1
vote
2 answers

Add table name to each select field in query, in agile tookit

I have a problem with certain generated query, the query does an inner join with a table that has some same field. How can I have the query with the table name in each field, basically what i want is that: Convert this: select "list_id",…
Javier del Saz
  • 846
  • 1
  • 9
  • 16
1
vote
1 answer

How do i debug database related error in Agiletookit ? ATK4

I know about the $m->debug(); as mentioned here But i am not sure how i should start debugging the following issue. My approach will be doing a var_dump inside dsql.php and compare fields and then go step by step upwards in the OOP layers. I was…
Zeeshan Abbas
  • 821
  • 6
  • 20
1
vote
1 answer

How to use Filestore in API in Agiletoolkit?

i am working on an urgent project which involves implmentation of filestore of Agiletoolkit i went through the doc here =>…
Zeeshan Abbas
  • 821
  • 6
  • 20
1
vote
1 answer

AgileToolkit - Performance of save() in Model_Table with references

I'm using AgileToolkit 4.2.4 and experiencing some performance problems when using Model_Table for inserting a large amount of items into a MySQL 5.5.31 database with InnoDB engine. After some testing I found out that the model becomes slow when…
Neman
  • 1,237
  • 2
  • 13
  • 16