The Problem Solver

Tell me and I will forget
Show me and I will remember
Involve me and I will understand
- Confucius -

Google Ads

This Blog

Syndication

Search

Tags

News





  • View Maurice De Beijer's profile on LinkedIn

Community

Email Notifications

Explore

Archives

September 2012 - Posts

I really like using jQuery UI in my web applications. But even though jQuery UI is very well tested there are some potential issues to keep in mind. One of those is using the jQuery UI controls on touch devices like the iPad. With these touch enabled devices becoming more and more popular support is quite important if you don’t know you exact client configuration. And for that matter, even if you client has standardized on a specific browser, let say Internet Explorer 9 for example, you may notice that there are in fact lots of other “unofficial” devices being used.

 

The problem

The reason jQuery UI doesn’t always work out of the box is because they use the mouse events. And on most cases a touch event also raises a mouse event but not quite always. For example take a look at the Draggable demo on an iPad. It works perfectly with a mouse but with an iPad all you do is drag the whole browser window.

 

The solution

The solution is rather simple: In the case of a touch event make sure this also raises the appropriate mouse event. There are a number of jQuery plugins that will do this for you. In this example I used jQuery UI Touch Punch which works really well and is simple to add.

 

Try for yourself

I have created a small demo page here. You can toggle the support for touch events using the button to try both with and without support for touch.

 

Enjoy!

Posted by Maurice | 2 comment(s)
Filed under: ,

In deze podcast spreekt Maurice de Beijer met Matthijs Hoekstra. Ze zijn aanwezig op de Visual Studio 2012 launch bij Info Support in Veenendaal en hebben het over het ontwikkelen voor Windows 8 met behulp van Visual Studio 2012.


Links:


Met dank aan onze sponsor RedGate.

Posted by Maurice | with no comments
Filed under: , , ,

 

Last year I wrote about installing missing NuGet packages and Visual Studio projects. That works well but it does require using a command line version of NuGet.

 

It turns out that this has become a lot easier in VS2012 and is supported natively from within Visual Studio.

 

Enabling support

The first step is to enable the feature as it is disabled by default. This setting lives under Options -> Package Manager -> General.

settings

 

Restoring missing packages from a VS2012 solution

Assuming you have to restore missing packages for a solution the first thing is to enable this on the project. Right click the solution file and select Enable NuGet Package Restore.

enable-package-restore

Next open the package manager console. There should be a button to restore missing packages. Click this and all missing packages are loaded and the project compiles again.

Package Manager Console

 

Sweet Smile

 

Enjoy!

Posted by Maurice | 1 comment(s)
Filed under: ,