graph = image.getGraphics();
graph.setColor(aColor);
graph.setFont(aFont);
graph.drawString(text, x-position, y-position);
Thursday, September 16, 2010
Friday, September 10, 2010
Some small consideration when design web applications
Sometimes I think to myself, what makes web application different from others? I find a real case when I review a real application.
This application has an edit page, on which user can select "Y" or "N" from a drop list. It also define keys for "Y" and "N" in a message properties file and this application is designed for English only.
I think there are at least two small places that the designer can do better.
This application has an edit page, on which user can select "Y" or "N" from a drop list. It also define keys for "Y" and "N" in a message properties file and this application is designed for English only.
I think there are at least two small places that the designer can do better.
- use radio button instead of drop down list, this saves one click.
- still put real messages in properties files but no need to treat a "Y"/"N" choice as a real message
Subscribe to:
Posts (Atom)