Wednesday, May 21, 2008

Sugar 5.1 Key Features

  • Advanced Reporting and Analytics
    • New User Interface and Wizard combines a simple, intuitive design with a guided process to step the user through report creation.
    • Complex Reporting Sets allows users to create complex reports across multiple modules (contacts, accounts, opportunities, cases), as well as support for data joins.
    • Matrix Reports create powerful reports across modules with the ability to group by multiple attributes.
    • Run-Time Filters allows users to change the attributes of a report in real-time, similar to pivot tables.
    • Excel integration captures Sugar report information in the familiar, easy-to-use Microsoft Office application.
  • Wireless
    • Improved User Interface provides users with view into edit, detail, and list views, as well as the ability access employee directory, store preferences, and view recent items.
    • Rich HTML Client delivers rich presentation of SugarCRM data though a standard web browser.
    • Device Independent allows users to view SugarCRM data from any PDA or smart phone, including Blackberry and iPhones.
    • New search capabilities allow users to find information quickly with the press of a few buttons.
  • Tracker
    • Tracker Reports provide a snapshot into system usage in order to increase user adoption and visibility into CRM utilization.
    • System Monitoring provides administrators information on how the system is being used and potential stress points for the application.
  • Data Import Enhancements
    • Improved Import User Interface provides more options for ensuring data transfer is executed smoothly and accurately into SugarCRM.
    • Data Quality Controls allows administrators to specify whether data imports should create new records or update existing records.
  • Module Builder
    • New Relationships allow for new modules to be related to multiple existing modules.
    • Auditing provides a complete history of module creation and modifications to better keep track of customizations.
    • Dashlet Support allows customer object and module functionality to be displayed in AJAX containers on the homepage.
    • New Templates now tracks file and opportunity information.

Wednesday, November 7, 2007

DynaTable: Client side Data handling API

While working on web based CAD project, we (me & adil) came up with an API to handle large forms and multiple data instances against a specific entity on client side through javascript. The user can add as many html tables to his form as he may need with their separate Add buttons to add rows while having only one Save button, which will store the respective client side data to server side DataSource.

Get it @ Google Code

Features:
Fast Processing,
Low ViewState
Rows can be Added/Deleted (& Updated in next release) on client-side
Dynamic & Eeasy Handling Interface for programmers
Easy Deployment

I have put this approach for an open discussion to evolve & Your suggestions will be welcomed warmly.

Saturday, October 27, 2007

Simple Approch: Add/Delete Rows with Dynamic Columns

var numLinesAdded2 = 0;

function AddRow(TableId,cells)
{
var tbl = document.getElementById(TableId);
var x = tbl.insertRow(tbl.rows.length);
var tdCells = cells.split(';');
var cell;
cell = x.insertCell(0);
cell.innerHTML = " img style='CURSOR: hand' src='images/delete.gif' alt='Delete' onclick='javascript:DeleteRow("+TableId+", this)'>";

for(i=0; i < tdCells.length; i++)
{
cell = x.insertCell(1);
cell.innerHTML = tdCells[i];
}
}

function DeleteRow(TableId,row)
{
var i=row.parentNode.parentNode.rowIndex
TableId.deleteRow(i)
}

Friday, October 12, 2007

Virginia University: DARDEN MBA Program Deadlines

http://www.darden.virginia.edu/html/standard.aspx?menu_id=27&styleid=4&id=579

2007- 2008 Application Deadlines

RoundApplication
due by
11:59 PM (EST)
Interviews
Conducted
Decisions
Released
Deposit
Deadline
Early ActionNov. 1, 2007Dec. 17-21, 2007
Jan. 7-18, 2008
Feb. 1, 2008Mar. 17, 2008
2Jan. 3, 2008Feb. 20-Mar. 4, 2008Mar. 24, 2008May 5, 2008
3Feb. 28, 2008Apr. 11-18, 2008May 7, 2008May 22, 2008

*Interview notification can take place at any time up until the decision release date for the deadline in which you have applied.