Tagged Questions

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 ...

learn more… | top users | synonyms

5
votes
1answer
248 views

Recursive tree rendering with Agile Toolkit

I have a following situation. I have a Model A with following properties: id int name varchar(255) parent_id int (references same Model A). Now, I need to render Tree View using that ModelA. Of ...
3
votes
2answers
126 views

Creating a database query using dsql

Is it possible to make a query using any of the methods of dsql() ? something like: $dq=$this->api->db->dsql()->execute('insert into table xx (field1,field2) values ('a','b')'); Thanks ...
3
votes
1answer
109 views

How do you display info from a database

I have figured out how to add data from a model into a grid like the examples on the learning section of the Agile Toolkit website. But I'm looking for the correct way to show data from a database ...
3
votes
1answer
98 views

How to send mail using Tmail?

I went though the Tmail class but i dont how to load a template. can any body provide me a sample example...
2
votes
1answer
49 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 ...
2
votes
2answers
49 views

MVCGrid/MVCForm updating MVCGrid row after updating MVCFord

Seems like a simple issue but I can't find the solution. I have an MVCGrid using an Expander column linked to an MVCForm. I can apply the update easily through the form but I need to refresh MVCGrid ...
2
votes
2answers
92 views

Multi Table Update/Delete in AtK4

How can one achieve multi table update/delete in atk4?
2
votes
1answer
112 views

Reference Table Lookup Ability in Agile Toolkit ATK4 CRUD

I need help in Agile Toolkit CRUD Grid/Form. I made a CRUD Grid/Form in Agile Toolkit for Employee, Position and Department. It was very easy. But i am now having difficulty trying to set the ...
2
votes
1answer
60 views

Defining entity in model

I am trying to do a CRUD as mentioned in Jobeet tutorial(http://agiletoolkit.org/learn/tutorial/jobeet/day3). I have also added a generate.php inside page directory with the code mentioned in the ...
2
votes
1answer
30 views

in ATK4, how do i use a template to create a filetype other than html?

The last remaining part of my original application that doesnt use atk4 is the dynamic css files created in php and outputing a css header. The width is determined based on the data in mysql and is ...
2
votes
1answer
122 views

Setting mysql port number in agile toolkit

How do I set a port number for mysql connection in Agile Toolkit? The mysql in my local machine is running in a different port 3307, how should be my connection configuration look like? I tried the ...
2
votes
1answer
34 views

Managing an incrementing field in a model with ATK4 (not a mysql autoincrement column)

OK -this might be simple but i'm having trouble visualising where i need to put what in ATK4. I have a table (team) with columns id, name and reference. The id is an autoincrement colunm and a ...
2
votes
1answer
103 views

Loading data from Database with Atk4

To be hones working with Atk4 is a great adventure for such a rookie as I am. and now i have really a problem i can't solve by myself. I have two tables in MySQL database. The first one is named user ...
2
votes
1answer
61 views

Create REST API in ATK4?

Just started fumbling with ATK4. I'd like to use it both as a backend API (if possible) as well as to create a small CMS based on the same data the API will work with. The API will be accessed by ...
2
votes
1answer
29 views

SchemaGenerator additional VARCHAR field, why?

When generating a table from this model: function init() { parent::init(); $this->addField('person_id')->refModel('Model_Person')->mandatory(true); ...
2
votes
1answer
74 views

How to implement image verification using ATK4

I am developing a simple web form to collect feedback from visitors of my website. Since the visitor is not authenticated, I would like to implement an image verification step for the users. I have ...
2
votes
3answers
89 views

What is the correct way of handling duplicate errors in db

I'm implementing a subscription in a DB. The email must be unique, so I have a UNIQUE index in the database. I have this code in my page init: $f = $p->add('MVCForm'); ...
2
votes
1answer
95 views

Populate dropdown in ATK4

function init(){ parent::init(); $f = $this->add('Form'); $f->addField('dropdown', 'Label:')->setModel('User'); } So this code will output a dropdown list populated by the ...
2
votes
1answer
82 views

How to define new Model in ATK4

From: http://agiletoolkit.org/learn/understand/model/add class Model_MyModel extends Model_Table { function init(){ parent::init(); $this->addField('name'); } } From: ...
2
votes
2answers
102 views

Can I create a menu with sub-menus in Agile Toolkit?

The menu class documentation - and the provided example - do not seem to show any way for me to build a navigation menu with more than 1 level of navigation. What do I do if I want to build an ...
2
votes
1answer
117 views

ATK4 What is the procedure for setting up an Admin Area?

I have setup a CRUD area on my frontendAPI.php file (testing my models)... and I even managed to secure it. I would like to do this the proper way... I would like to establish a separate directory/ ...
2
votes
2answers
79 views

Passing parameters to ->redirect() via $_GET

Hi I have this sentence $g->addButton('')->set('NEW ACTIVITY')->js('click')->univ()->redirect('newactivity'); Is it possible to call the "redirect" method and passing parameters via ...
2
votes
1answer
85 views

How would i set order of MVCLister?

How would i properly sort output of a MVClister? <?php class page_index extends Page { function init(){ parent::init(); $p=$this; ...
2
votes
1answer
69 views

How do I associate a database table with a model in ATK?

I have legacy code which stores temporary data in the context. I would like to store this in the DB using the following model: class Model_MyModel extends Model_Table { function init(){ ...
2
votes
1answer
42 views

Associating an uploaded File (id) with another table

I'm using Filestore to make uploads in a form. It's a great implementation but I've a doubt about associating that file uploaded with a register in a table. When I run the filestore.001.sql, it add ...
2
votes
1answer
91 views

reference field on form

I think I'm not understanding the reference field. I have a simple form <?php class page_prueba extends Page { function init(){ parent::init(); $p=$this; $f=$p->add('Form'); ...
2
votes
2answers
466 views

Agile Toolkit (ATK4) documentation or tutorial to create a membership site?

I'd like to get started with testing the ATK4 (Agile Toolkit - http://agiletoolkit.org/). Does anyone have any suggestion regarding where to find a tutorial for using ATK4 with: Template development ...
2
votes
3answers
64 views

Adding custom meta

How can I add custom tags (for SEO) in Agile Toolkit (atk4)?
1
vote
2answers
27 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 ...
1
vote
1answer
32 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 ...
1
vote
1answer
34 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
35 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
34 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
51 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
36 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
34 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
1
vote
1answer
31 views

How to calculate field in Model based on other table?

I have one model: class Model_Alumno extends Model_Table { public $entity_code='alumno'; function init(){ parent::init(); $this->defineAuditFields(); ...
1
vote
2answers
57 views

Is it possible to move “Edit” and “Delete” buttons to the front in CRUD?

I created a model with ~30 columns, so every time I need to edit or delete something in CRUD, I have to scroll to the rightmost to find the edit or delete button. Is it possible to move them to the ...
1
vote
2answers
38 views

Chain a js action on form displayFieldError

I have a form that use displayFieldError when submitted to display errors on fields. I need to show/hide a container on certain error conditions, is possible to chain a js action on it?
1
vote
1answer
23 views

Strange behavior with form

I'm using version 4.1.3 I have a table migrated from access that has a lot of fileds (about 20). I have a grid and each row has a button "edit" that is an expander and opens a page with a form. ...
1
vote
2answers
43 views

Is there a way to bind something to submitbutton?

Can I bind anything to submit button? If yes how to do it?
1
vote
1answer
51 views

Is it possible to have a vertical MVC grid?

I have a MVCgrid with few fields with and expander to view all the detials. Inside the expander, in order to view all the details I use an MVCform without submit action, but it feels weird. Is it ...
1
vote
1answer
30 views

How to delete Model Condition?

I wrote a function which is supposed to return an array of clubs for userId. I don't know why by when I add where(Model_ClubUsers::$USERS_ID,$userId) to dsql() it doesn't set the condition and I have ...
1
vote
1answer
50 views

How to refresh grid after update from modal form in atk4?

I have a page with a MVCGrid calling a modal form from external page: $g1=$p->add('MVCGrid'); $g1->setModel('Student'); $g1->addButton('Add New') ->js('click') ->univ() ...
1
vote
1answer
27 views

How to response ajax?

I've got field which makes ajax request on user input, and I want to response to it with json object. I use jqeury function $.getJSON with url ?page=answersearch, but it doesn't work. Instead of ...
1
vote
1answer
58 views

How to use expander to update the data in atk4 grid?

Let's say I created a model "product" with a few fields such as "name", "price","tax","shipping" etc. At first I just want to show name and price in the grid: $g = $this->add('MVCGrid') $g ...
1
vote
2answers
86 views

Types to add in field from database Agile Toolkit

I've discovering Agile Toolkit and I have problem with finding addField('field')->type(). What kind of types could there be and where can I find them? I need type 'set', but ...
1
vote
1answer
75 views

How to put data from multiple tables into one model?

How to make model, which connects three tables from a database? My DB structure is: users id other fields users_info id users_id - foreign key to 'users' table other fields users_credentials id ...
1
vote
1answer
27 views

How to set Form Field Line Class

I added a field of type line to form. It created a field and inside that field is field with tag input. How can I set that input class?
1
vote
1answer
73 views

Is it possible to set more than one model into MVCForm?

I have three database tables with foreign keys to each other, and I want to insert data into those tables. I created three models and MVCForm. How can I insert data into those three tables with one ...

1 2 3