Agile Toolkit is Object Oriented PHP framework for building rich Web UI (http://agiletoolkit.org/)

learn more… | top users | synonyms

0
votes
1answer
20 views

how to extract a specific list from a Model with Agile Toolkit

i'm working with Agile Toolkit i got a Model_Product class Model_Product extends Model_Table { public $table="product"; function init(){ parent::init(); ...
0
votes
2answers
57 views

AgileToolkit OAuth add-on error 500 at facebook's mobile site

I am using the OAuth Facebook controller add-on for ATK4. It works as expected when authenticating with Facebook from a regular desktop browser. It works when authenticating using a mobile browser ...
0
votes
1answer
32 views

How to Set a Filter on a Field Referencing a Model in ATK4

i am currently doing a complex multi-level classification system. to simplify, i will explain what i am trying to accomplish by providing theoretical examples: i have a group table: group id| group ...
0
votes
1answer
41 views

Dropdown dependents agile toolkit

Hello friends a pleasure to be around here, I'm new to this framework and I have a few doubts about how to make dependent dropdown, for example, I have a list of countries and select a country to show ...
-1
votes
1answer
57 views

agile toolkit ModelGenerator gives errors [closed]

I am trying to use agile tookit model generator. As described in the documentation I am deriving my page class from Page_ModelGenerator: My page is defined like this <?php class ...
1
vote
1answer
27 views

ATK Examples directing to a different DSN

Just installed atk4 (latest) on my webserver. The default page loads fine, the DB test shows success, but the examples included in the package seem to be referencing a dsn other than what is in the ...
1
vote
1answer
102 views

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 ...
2
votes
1answer
17 views

How to add Form into the CompleteLister ATK4

I want to add a simple form to each row of CompleteLister. I've tried this: <?php class page_list extends Page { function init(){ parent::init(); $l = ...
0
votes
2answers
83 views

How to I set a field in a form to auto increment based on the primary key ID?

I'm new to Agiletoolkit and still learning the ropes. Here's my question: I have a regular CRUD for managing jobs. $this->add('CRUD')->setModel('Job'); Model contains field "job_number" ...
1
vote
1answer
34 views

Form submission works on windows dev machine but not linux production server

So i have a bit of a complex generated form happening which works fine on my windows xampp server but the dropdown field value is not retrieved after submission on my linux production server - any ...
1
vote
1answer
30 views

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.
0
votes
1answer
128 views

Grid with button to details page

I have a grid that displays contact names. I want to be able to have a details button that links to another page(details), which will display the contact details such as , name, addresss, notes, ...
2
votes
1answer
71 views

How to set default value in dropdown

I have a form with a drop down that has a list of states set like this. $this->addfield('State','state')->setValueList(array('Alabama', 'Alaska', 'Arizona', 'Arkansas', 'California', ...
0
votes
1answer
80 views

Agile Toolkit “filestore”

Hi i am trying to implement the filestore for a prototype project, an online policy register. I was following the Jobeet tutorial and have also looked at the doc/filestore page on agiletoolkit.com ...
1
vote
2answers
80 views

Is it possible to reload just one row of ATK4 Grid?

Is it possible to reload only one row of ATK4 Grid? For example, most of the time in CRUD after makeing changes in Form you only need to reload one grid row and not all Grid object. Edit: I'm sorry ...
2
votes
2answers
124 views

Agile toolkit : how to automatically reload grid

Using Agile toolkit to generate a grid, I'm trying to get an automatic reload of a grid but I can't figure how :/ I dug into the js() function and saw the first parameter is $when but, how to set up ...
1
vote
1answer
88 views

Agile Toolkit localization

I read the answer here for a question about bilingual atk, but I wonder if the framework is adapted for international use? I tested the CRUD functionality (v 4.2) and cannot see that e.g. the labels ...
1
vote
2answers
88 views

Using MYDBR login tables with Agile auth

Im currently using the Agile Toolkit to create my website, and in this website we are including reporting, which is being handled by MYDBR. MYDBR includes its own login tables, and I was hoping that I ...
0
votes
1answer
130 views

Agile Toolkit and Bootstrap

I am using CI, but seriously considering a move to ATK4. The SaaS code I build always has to be desktop & mobile accessible, so recent projects have relied on Twitter's Bootstrap layouts to allow ...
1
vote
1answer
111 views

Set hasOne() dropdown field as readonly in forms

There are a number of post about setting fields in forms to read only, but none that seem to cover hasOne() fields. I wish to edit a list of students (enrolments) that belong to a given class. The ...
1
vote
1answer
78 views

Reading Model data (Agile Toolkit)

I have a model which has some records. Now how can I get the records separately? (Without using CRUD or Grid).
0
votes
1answer
204 views

Where is CRUD HTML template? (in Agile Toolkit) [closed]

Where is CRUD HTML template? I can't find it in the 'shared' directory.
1
vote
2answers
168 views

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'); ...
0
votes
1answer
51 views

Undefined property for public var in Model class?

I'm somewhat confused about the following snipped of code which simply checks if a column exists in the table before adding it to the Model with addField(). strangely however, PHP error_log warns me ...
0
votes
0answers
40 views

Agile Toolkit 4 XML Parsing [closed]

How does Agile toolkit 4 parse XML files from an external source? I need help!
2
votes
1answer
61 views

Invalid date value storing in atk4 MVCForm

I have created a form using MVCForm and set Model class extended Model_Table. In model class I have a date field. I tried to edit existing record (using GET and loadData() in model), but date field ...
1
vote
3answers
109 views

How to save data POSTed from From into database not using Form->setModel()

I know that's kinda simple and lame question, but still. I have a Form which should not show all Model fields, but only some of them. That's why I can't use Form->setModel($m), because that'll ...
1
vote
2answers
135 views

Field not showing error in Agile Toolkit

trying to use the beforeSave hook with some server side validation and throwing a field error - and it is working ..... kind of .... There is an exception caused because it doesn't save as required ...
1
vote
1answer
106 views

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 ...
1
vote
1answer
63 views

What's the lowest browser versions ATK4 should be compatible with?

What's the lowest browser versions ATK4 user interface should be compatible with? I'm especially interested in supported Internet Explorer versions. I see that in Chrome and FireFox everything looks ...
0
votes
1answer
295 views

Installation of Agiletoolkit where do I set mysql password for database test?

I am trying out agiletoolkit. I get an error when I try to do the Database test. PDO error: SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) DSN: ...
2
votes
2answers
204 views

Using ref() with linking tables in ATK

I've been working on the Student enrollment example/tutorial for ATK and am stuck on the use of ref()'s via linking tables. A basic ER of the system is below: [Student] ||---|< ...
1
vote
3answers
108 views

How to set parent_id=NULL in child table when record in parent table is deleted?

How to set parent_id=NULL in child table when record in parent table is deleted? It's like ON DELETE = SET NULL in MySQL INNODB tables, but I would like to avoid using all this (cascading, ignoring, ...
1
vote
2answers
111 views

How to calculate and store in DB some field values on Model save hook?

What I want to accomplish is the following. I need to save in database some field which value should be automatically calculated using other values in its Model (or related models). I guess I should ...
0
votes
1answer
95 views

addTotals to CRUD Grid crashes edit

Pretty simple issue. I know that that CRUD uses Grid so I did: $finances = $grant->ref('Finances'); $crud=$tabs->addTab('Finances')->add('CRUD', array('allow_add'=>false, ...
0
votes
1answer
89 views

Dropdown values and defaultValue set from hasOne inside Model

I have the following model: class Model_GrantMinimal extends Model_Table { public $table='grant'; function init() { parent::init(); $this->hasOne('User'); ...
3
votes
1answer
140 views

MVCForm Agile Toolkit Form Update Record ID must be specified

hopefully simple questions regarding Agle Toolkit. Currently with the below code getting Error in AJAX response: SyntaxError: Unexpected token < BaseException Record ID must be ...
1
vote
1answer
54 views

Condition field in atk4 form

I am using atk4 Form in my application. I want to show a text field on clicking 'Y' option in a radio field. Is there any build in function to set condition or need jquery script to achieve this ?
0
votes
1answer
165 views

Extending the Grid UI element to link to a page

I am using Agile Toolkit for some development and would like to extend the existing Grid Control so that each row contains the data (as it does right now) but also links to a page with a query string ...
1
vote
1answer
47 views

Form submitting with 'save and new document' button

I am using a simple form to submit some new document info, and would like the user to be able to hit a 'save and new document' button so he can easily add multiple documents. I've tried to add a ...
1
vote
2answers
84 views

highlighting/selecting a specific tab after submitting search form

I'm wondering if there is a way in atk 4.2 to have a specific tab selected based on what search results where found after submitting a search form. if have a simple search form (searching for ...
0
votes
1answer
98 views

PHP Agile Toolkit Security [closed]

What about security? How does Agile Toolkit prevent attacks? How does it handle captcha, xss, csrf, sql injection and session hijacking?
1
vote
1answer
62 views

DSQL condition with and without comma

Hi I am writing some DSQL queries with Agile Toolkit but am a little confused. Given the following DSQL code: $select = $select->add('Model_Rental')->dsql() ...
1
vote
1answer
69 views

atk4 simple dropdown from database table

I want to populate a dropdown from a table 'accountgroups' which has 2 columns id and name. The first row of dropdown should be blank or '--Select Account Group--' when first loaded. Once the user ...
0
votes
1answer
101 views

Agile Toolkit addExpression and DSQL

I have been following the book provided by the agile toolkit and am at this portion: http://agiletoolkit.org/learn/app/logic Unfortunately the dsql api lacks some clarity and the calculated fields ...
0
votes
2answers
188 views

Agile Toolkit: Password Change FormAndSave

I have been following the Agile Toolkit "Book" and I have reached: http://agiletoolkit.org/learn/app/auth I tried using the code provided: class page_account extends Page { function init(){ ...
0
votes
0answers
59 views

How to use JqueryMobile within AgileToolkit?

As far as I understand, JQueryMobile is extending JQuery and JQueryUI. AgileToolkit is also using both JQuery and JQueryUI. My Question: is it possible to use JQueryMobile within AgileToolkit, too? ...
0
votes
1answer
78 views

Agile tool kit oAuth facebook autentication enable

I have configured atk-addons oauth login using facebook. After entering user creantial facebook redirect to my application which leads server error The website encountered an error while retrieving ...
1
vote
1answer
44 views

Connect to more than one database

I'm using 4.1.4 Is it possible to define a connection to another database and use it with dsql ? I mean use the two connections. Can I define a second connection in config-default.php and how can I ...
0
votes
1answer
191 views

How to use form validation with the CRUD component in AgileToolkit4?

everyone. I've started using atk4 in a personal project a couple weeks ago and have been facing some difficulties since then. This specific question I want to ask is about how to make form validations ...

1 2 3 4 5 6