+40 745 232 788

Online Solutions Development Blog   |  

RSS

posted by ,
Categories: Mobile Development
Tags , , , , , ,

In this article we will continue to build our Sencha Touch MVC app we’ve started in part 1 and part 2. This time we will explore different ways to call a controller action. A controller action can be called in three ways: Using the route as a value for the href attribute of an anchor …

posted by ,
Categories: Mobile Development
Tags , , , ,

As the title says we will continue to build our Sencha Touch MVC app we’ve started in part 1. In this part we will create a controller and two views and learn how to use them. Let’s modify our current project structure by adding some folders: Creating a controller. In app/controllers create a file named …

posted by ,
Categories: Mobile Development
Tags , ,

Introduction Sencha Touch is an OOP JavaScript framework that makes it easy to build mobile web applications that look and feel native on iPhone, Android, and BlackBerry touch devices. To find more you can take a look at Sencha Touch website. If you haven’t worked with JavaScript in an object-oriented way, I think you’ll find …

posted by ,
Categories: CSS, HTML, JavaScript
Tags , , , ,

Canvas is maybe one of the most interesting HTML5 feature. It has all you need to create rich web applications or games. We talked about how to Generate gradient image with PHP some time ago. Now we’re gonna use HMTL5 canvas element to draw a simple button with a gradient effect, using it’s 2D context …

posted by ,
Categories: PHP
Tags , ,

If you want to provide the ability to download some content (like a text from the database) or to be sure that the browser won’t open a file you gave a like to instead of downloading it here are the few lines of php code that you can use to do that: In this context …