Page 1 of 1

Xataface 1.1.5 Released

PostPosted: Mon Feb 16, 2009 12:11 pm
by shannah
Xataface 1.1.5 has been released on Sourceforge. It finally includes the ability to delete selected records in the list tab. Previously you had to click on each record individually and press "delete". Now you can just check the records you want to delete, and click the "Delete" button at the bottom of the page.

Some additions to the API include:

1. Dataface_Record now has a delete() method.
2. df_init() now returns a reference to the Dataface_Application object so that the index.php file can now contain as few as 2 lines of code.

For example:
Code: Select all
<?php
require_once 'xataface/dataface-public-api.php';
df_init(__FILE__, 'xataface')->display();