Blog

UI performance and better UI framework

August 18th, 2010 in UI, javascript by Webdevelopment

0

This is the discussion between our group members and excerpt of my view, Our development used:

- Java (CLI)

- jRuby (wrapper on java CLI)

- Ruby (API for jRuby wrapper)

-RoR (GUI)

-Jquery (view controls using selectors)

-YUI (Ajax data-manager, DataTables/Grids,  DataPanels, Dialog box )


This discussion was heavily based on YUI library but here my point is to give the view what product can encounter when you have these issues:

- Lots of javascripts

- Too complex view which are heavily dependent on other logic models

- Lots of hacks to override different JavaScript frameworks functionality and css

- Single page interaction

- Many developers working and not using common files

- Back-end command line response is slow on top of one page GUI, which is heavy because of lot of javascript

Read the rest of this entry »

IIDA designer products

July 31st, 2010 in Design, Inspiration by Webdevelopment

0

Designers Phone from IIDA

Read the rest of this entry »

Paper art work - Peter Callesen, Illustration

July 20th, 2010 in Design Development, Illustration, Inspiration by Webdevelopment

0

how to make templates for Simpleinvioces

July 8th, 2010 in PHP by Webdevelopment

0

simpleinvoices

Simpleinvoices is great open source software for managing invoices by Justin, I’ve been using this software for almost 1 and half years now. I needed to have quick solution for having two separate themes using so I can test my changing without disturbing actual source code of smarty based themes, so I done few changing to have multiple themes for simpleinvoices.

Steps involved in this are not database driven, you need to actually modify the config parameter theme each time to change theme.

PS: These changing in code are only hack not best practice so if any one have better code,  idea or code review please post comment.

Download the latest package from  simpleinvoices, It’s been tested on simpleinvoices.2010.2


Step 1:
Open file

source_directory\config\config.ini

and add these lines after database parameters

theme = grid


Read the rest of this entry »

JavaScript Chart Libraries part-1

June 18th, 2010 in javascript by Webdevelopment

0

We have started search to find opensource libraries for plotting graphs/charts with much of flexibility in ruby on rails and for commercial use and in initial stage we found these, I’ll add also pros and cons to use of these and later will put which we used and why.

JavaScript Chart Libraries:

Few open source JavaScript graph libraries based on jQuery framework.

1) jqPlot:
Customizable lines-width and line-shapes (squares, rectangles, X, diamonds and others), title, mix data inputs.

URL: http://www.jqplot.com/tests/

Example 1: Line Styles http://www.jqplot.com/tests/coretests.php
Example 2: Pie charts http://www.jqplot.com/tests/pieTests.php
Example 3: Zoom http://www.jqplot.com/tests/zoomTests.php
Example 4: Zoom http://www.jqplot.com/tests/zoomProxy.php
Example 5: Zoom with data tracking http://www.jqplot.com/tests/dataTracking.php
Example 6: Bars http://www.jqplot.com/tests/barRendererTests.php
Example 7: Drag and trends http://www.jqplot.com/tests/dragableTests.php
Example 8: Stacks http://www.jqplot.com/tests/stackedTests.php
More examples: http://www.jqplot.com/tests/

2) Flot:
URL: http://code.google.com/p/flot/

Example 1: http://people.iola.dk/olau/flot/examples/ajax.html
Example 2: Clickable tool tips http://people.iola.dk/olau/flot/examples/interacting.html
Example 3: Mouse wheel zoom http://people.iola.dk/olau/flot/examples/navigate.html
Example 4: Selecting/deselecting http://people.iola.dk/olau/flot/examples/turning-series.html
Example 4: Stacks http://people.iola.dk/olau/flot/examples/stacking.html
More examples: http://people.iola.dk/olau/flot/examples/

Read the rest of this entry »