Agile Toolkit is a framework for PHP that simplifies and speeds up development of Web User Interfaces. It is mostly aimed at Administrative Interfaces, Web Software and has a Object-Oriented structure similar to Desktop GUI Toolkits. The current stable version is 4.1.3 and the 4.2 branch is in ...
0
votes
1answer
33 views
CRUD, after click Save in Add or Edit
/var/www/page/page/video.php:
<?php
class page_video extends Page {
function init(){`enter code here`
parent::init();
$form=$this->add('Form');
...
0
votes
2answers
23 views
Form with head and detail
some time ago I've asked for something similar, but now I'm picking up with this, so asking again.
Maybe this question can sound simple but it's not for me.
I have two tables:
header ...
1
vote
1answer
59 views
A Practical Case [closed]
I have used CodeIgniter for more then 7 years, Developed xCIDeveloper which is the only joomla component which lets you develop joomla extensions in CI. I have used xCI on more then 200 projects and ...
0
votes
1answer
17 views
Adding where 'id IN ' clause to Model with addCondition()
I was wondering if I can use addCondition() to add a where clause of the type: 'id IN (1,2,3,4)' to an existing model? according to the comments in Model_Tabel it would need to be possible if I give ...
2
votes
1answer
24 views
How to perform multiple js actions from one button in atk4
--EDIT: This is now SOLVED.
I want one button to do multiple js commands, e.g.
$nextButton = $form->addButton('Next');
to do:
$button_repopulate_address->js(true)->show()
...
0
votes
1answer
16 views
ATK 4.2 Auth with MD5 won't match password
When using Basic Auth with md5 encryption in 4.2, it won't let me log in.
doing a bit of debugging, the problem seems to be in the encryptPassword function in Auth_Basic in this statement:
...
0
votes
1answer
29 views
Does the Page_SchemaGenerator class work in Agiletoolkit?
I am looking at atk4 (http://agiletoolkit.org/) for a project.
However the Page_SchemaGenerator is not working for me:
Method is not defined for this object
Additional information:
Raised by ...
2
votes
1answer
20 views
QuickSearch on a details page not keeping id when refreshing
I have a Grid for which I have a column formatted to a link. Once I click on a link that is being generated, this link will take me to a page for which the url looks like ?page=details&id=10. This ...
0
votes
1answer
20 views
Available Movies as in example is not showing correct calculated field
the link http://agiletoolkit.org/learn/app/logic is followed and calculated field in
// add into Model_DVD_InStore
function dsql_count(){
return $this
->dsql(null,false)
...
0
votes
1answer
23 views
Example of using multiSelect on a form
Does anybody have a good example on how to use multiSelect field on a form? There is nothing in the documentation about it.
If I add it like any other field I get an error. I am using atk 4.2.
This ...
1
vote
1answer
50 views
Extend CRUD with column from other model/array in ATK4
In atk4 I like to extend CRUD with one column which is a lookup in an array of an available column in the model. It's to get the category name (catshop) of which the catshop_id is already available. ...
1
vote
1answer
47 views
How to use file upload in agile toolkit 4.2
Is there somewhere a full example of working atk4.2 filestore example code?
I've been searching in docs and stackoverflow and the few examples I have found just aren't working for me.
Do I need to ...
1
vote
2answers
81 views
Dropdown with indented categories in Agile Toolkit
I have a category table with id, name, id_parent structure. I'm using atk4 and I like to show dropdown with indented subcategories. So:
home
---cat1
---cat2
------subcat2.1
------subcat2.2
---cat3 ...
0
votes
1answer
33 views
CRUD ignores $display_field during Add
I've found a problem with the CRUD and hasOne() where the $display_field is ignored in the "add" form. If the referenced model has a 'name' field, then the drop down menu in the Add form of the CRUD ...
0
votes
1answer
30 views
PathFinder_Exception Unable to include Model/Model/ using setModel
I'm trying to create a reference manually from one Model to another model, using the example given in http://agiletoolkit.org/doc/modeltable/reference. I'm using the following tables and models:
...
-3
votes
0answers
29 views
Download generated file [closed]
Given that I have a form with a download button on it, how can I send a file back to the user when the button is pressed?
<?php
class page_test extends Page {
function init(){
...
0
votes
0answers
34 views
addCondition with addQuickSearch
I have a condition that I'm always adding on some of the models on the init. It's a authorization condition.
When I add a grid with a model that has this condition, and I add a quick search I get ...
2
votes
1answer
47 views
Setting makeSortable() on a grid column does not work as intended
I have just started using Agile Toolkit 4.2.0 for a simple CRUD web application, and so far I'm very impressed with the framework, except that I can't get column sorting to function properly.
...
1
vote
1answer
35 views
Default where clause, record viewing restriction
In a lot of applications users are allowed to see only certain records in a table, based on different things, such as statuses, roles, workflows...
Is there a way to specify at the model level a where ...
0
votes
1answer
30 views
Form update() not returning id in 4.2
I have been experimenting with ATK4 for a while now and it's just wonderful!
Migrating to 4.2 I came across a problem with Forms updated and not returning the inserted id.
Here is an example:
class ...
0
votes
1answer
44 views
BasicAuth and setting a User model which reference e-mail address
I'm just getting to grips with the shiny new ATK 4.2 which looks very nice. However, I'm having trouble with the BasicAuth class. I want to extend the BasicAuth using the User model. However, my User ...
1
vote
1answer
45 views
Calculated field always returns 1 - atk 4.2
I have a model that has a calculated field. The value returned is always 1. After turning the debug on, 1 is hardcoded in the query:
<?php class Model_Income extends Model_base_Income {
...
1
vote
1answer
64 views
Agile Toolkit 4.2 … reference field type breaking with model
This is a simple re-write of the example code for a reference field:
class page_LoadResults extends Page {
function init(){
parent::init();
$p=$this;
$f=$p->add('Form');
...
0
votes
1answer
47 views
ATK Radio Buttons with a model field
How can I define radio buttons for a model field.
class Model_Campaign extends Model_Table {
public $entity_code = 'campaign';
function init() {
parent::init();
...
1
vote
1answer
39 views
Creating master-detail grids using Agile Toolkit
How can I create a form that displays two grids, master and detail. When you select a record from the master, the details grid is refreshed.
0
votes
1answer
44 views
Atk4 Step by Step form doesn't load Facebook Like Buttons
I have a array with list of sites, I'm coding a step by step form using http://codepad.agiletoolkit.org/newsletter example.
In the second step I put Like Buttons using the following code:
...
0
votes
0answers
47 views
ATK4 - autocomplete display field
Okay, so I'm laying face down on the pavement looking up at the ATK4 learning curve...
I'm trying to set up a simple page much like the Agile demo here: http://codepad.agiletoolkit.org/autocomplete ...
0
votes
1answer
54 views
MVCGRID CSV Export error
i'm trying to export a grid i create with the object MVCgrid.
I found out that i can add the the current page the object 'MVCGrid_Export' instead of the object 'MVCGrid'that provides the export ...
1
vote
1answer
36 views
Form with two tables as source
I have two tables master and detail.
When I add a new record to master, after that I need to add records to the detail table.
Is it possible to have a form with tow "setSource()" methods ? Or do I ...
0
votes
1answer
41 views
Adding fields on the fly
I have a form with a table source, the form has a few fields (product, quantity)
I'm thinking to add a button that allows me to add another "line" with product, quantity.... and so on, because I ...
1
vote
1answer
42 views
ATK4 How to set up custom formatters?
I'm trying to pretty-up a dropdown field, and I'm not sure I'm taking the right approach. I have this model for which the field 'type' is to be a dropdown that displays a string, but stores an ...
1
vote
1answer
79 views
Can Agile Toolkit generate its model from existing SQL DB?
Brief Background
I'm investigating the potential of investing in Agile Toolkit for a future project. I like its approach and it's largley perfect for my needs - with the possible exception that I ...
1
vote
1answer
65 views
Agile Toolkit unable to find showMessage() for DVD rental example
I'm working through the Agile Toolkit DVD rental example. In the "Day3 - Creating Administrator's Interface" part of the tutorial, it adds the administrator interface and provides the ability to add a ...
0
votes
1answer
45 views
Why grid renders into the other grid row?
Why does the second grid renders into the first grid row, once I click on the X to clear the quicksearch?
What am I doing wrong?
This is my page:
class page_alumnos_equipo extends Page {
function ...
1
vote
1answer
53 views
How to mark checkboxes in grid from data?
I know how to select some rows from a grid as indicated here:
http://agiletoolkit.org/blog/how-to-select-elements-in-a-grid/
But I want to do the opposite, I want to have a grid, with selectable ...
1
vote
2answers
77 views
How to set quicksearch initial value?
where I want tu put an initial value.
I have seen that quicksearch has 'q' element but I can't access it, for example this does not find the q element:
$quickSearch->getElement('q');
How can I ...
0
votes
2answers
52 views
Pathfinder: accessing Admin models from Frontend
In my application (residing in a subdirectory of webroot) I have an Admin area with models for category type lookups. In the main frontend application I have other models with references to the ...
1
vote
1answer
64 views
Defining Complex Menu
How can I make a menu like this
AOption1 | BOption2 | COption3 <-- This is the basic menu of atk4
But If I make click over "Option1" I'd like a menu like this
ASubOption1
option1
...
2
votes
1answer
100 views
a bilingual application on Agile Toolkit ? with language selector for the user?
I am planning on developing a bilingual PHP app with Agile Toolkit, with a language selector on every page ( French & English ) .. Can ATK4 accommodate this ? I am thinking yes .. but .. how ...
1
vote
1answer
44 views
How to use readolny fields in a MVCForm in atk4?
I want to have a form where user can edit some (but not all) values of some fields.
So I would need to set some fields as read only, is that possible?
1
vote
1answer
111 views
how do I get the DatePicker value date to use in js()
I want to control a grid with dates on two DatePickers,
I'm reloading the whole page, although it may be better to reload the grid only.
Anyway, I can't get the value of the datepicker in order to ...
1
vote
1answer
57 views
Adding external graphs libraries
I'm learning how to integrate ATK4 with an external graph library.
Anyone, has some recommendations about this ?
thanks.
Alejandro
1
vote
2answers
74 views
How to use the getAllData() function?
After I added a form and loaded some data,
$f=$this->add('MVCForm');
$f->setModel('Model')->loadData(1);
$data=$f->getAllData();
the data do show up in the fields of the form, however, ...
1
vote
1answer
59 views
How to add path to pathfinder?
I want to make different panel for administrator. I created a folder 'Admin' and I put in there index.php, and folder 'lib' with Frontend.php and Auth.php. In admin panel's pages I want to make use of ...
0
votes
1answer
35 views
Is it possible to addTotals in agrid to only certain columns?
When I use addTotals() in a Grid, it sums every column with number fields, How to show only the ones I want?
0
votes
0answers
53 views
How to add a refresh button for MVCGrid?
I used the following code to reload a grid.
$mvcgrid->addButton('Refresh')->js('click',$mvcgrid->js()->reload());
It works well when I first open up the page. But after I click some ...
0
votes
0answers
61 views
Is it possible to use 'inline' fields in a MVC Grid?
Is it possible to use 'inline' fields in a MVC Grid?
How?
I have tried several ways I can imagine like:
$g=$this->add('MVCGrid');
$g->setModel('ProgramaPago');
...
1
vote
1answer
44 views
Why do I get Unable to include RenderObjectSuccess.php error when using inline in grid?
I'm setting up a grid with an inline field, pretty much the sames than in the examples in the demo, but I just keep getting error: Unable to include RenderObjectSuccess.php when chaning the value in ...
1
vote
1answer
59 views
Implementing last_login
I was wondering wich you think is the best way to implement a "last login", saving on a table the date and showing it to the user when he logins on the system.
Thanks
Alejandro
0
votes
1answer
76 views
MVCGrid w/Expander (parent) invoking an MVC Form(child) and loading child record - UPDATED
My multi-level MVCGrid/MVCForm/MVCGrid saga continues....
I am using nested MVCGrids with expander buttons that invoke MVCForms to perform different data operations. ALL mySQL tables in this process ...