Stivlo’st in Asia

Monday, July 12, 2010

‘undefined’ is null or not an object

Filed under: Javascript — stefano @ 11:43 am

My ExtJS combobox that was working with Firefox was showing this error message on IE8. The reason for this was a trailing comma in my Javascript matrix.

My matrix was like this:

var shopList= [
[’702038′, ’some dude name’],
[’1120685′, ‘another dude’],
];

After removing the trailing comma it worked in IE too:

var shopList= [
[’702038′, ’some dude name’],
[’1120685′, ‘another dude’]
];

Sunday, July 11, 2010

First steps with ExtJs

Filed under: Javascript — stefano @ 9:38 pm

Increasing memory available to Netbeans

Filed under: Java — stefano @ 3:03 pm

Saturday, July 10, 2010

How I am using my Nokia to share a 3G connection

Filed under: Sysadm — stefano @ 3:53 pm

Tuesday, July 6, 2010

Configuring locales on Ubuntu

Filed under: Sysadm, PHP — stefano @ 11:10 am
Next Page »