We ♥ web applications!
At mobalean we love to build innovative web services for Japan and the world. Our experience will help transform your ideas into successful online services.
At mobalean we love to build innovative web services for Japan and the world. Our experience will help transform your ideas into successful online services.
Mobalean is lead by Henri Servomaa, the original founder and mobile developer. At Mobalean we strive to develop services which are loved by our clients and users. By working in an agile manner, quickly adapting to changing requirements, we can deliver quickly and often.
Hailing from Finland, Henri has a long history with computers and the internet. With a background in Electrical Engineering and Computer Science, he has worked in Japan as Software Developer and System Admin since 2001. In 2005, he joined a company to develop mobile sites for the Japanese market and has been involved in mobile ever since.
Cleve Lendon is a Canadian engineer who has been contracting for Mobalean. He came to Tokyo in 1994, and has lived here ever since. He has broad experience as a software developer, which includes development of mainframe software, Internet applications and mobile apps (Android and iOS). He is especially skilled at writing Java applications (vd. Simredo 4, Grafikilo 15). When not programming, Cleve enjoys improv acting and studying languages, such as Latin and Esperanto.
Our strength is crafting web services for both Japanese and international markets. We bring our technical and cultural experience to help you adapt your ideas into successful products.
We develop with Ruby on Rails and use the best agile practices and tools, such as test driven development and continuous integration to achieve quality.
We are the leading provider of technical expertise about the Japanese mobile web. Mobalean started when the smartphones were just appearing on the market. Our Keitai Web Technology Guide is a quick starting point for learning about the initial challenges of Japanese mobile development. Although the technology stacks have changed since the proliferation of iOS and Android, some of the idiosyncrasies remain. Most notably, the Japanese market is still very much dominated by the big three carriers: DoCoMo, au and Softbank. Developers can find more technical details in our Keitai-Dev Wiki.
Email address: info@mobalean.com
If you prefer to call us, feel free to do so under +81 (0)70-6251-7245
For users of Skype, please call mobalean
Rails default date input is functional, but not very user friendly. For instance, the following is what date input previously looked like in Doorkeeper.
However, by using the Javascript library jQuery Tools' Dateinput, I changed improved the user interface to the following.
The issue with Dateinput, and other date selection widgets, is that they don't use the Rails style drop downs for inputs, but rather a text input (or HTML 5's date input in the case of Dateinput). To work around this, there are two general strategies: adapt your Rails application to support text inputs for dates, or adapt the widget to use Rails date drop downs. I prefer the second strategy as it is overall much less intrusive.
To accomplish this, I adapted a snippet I found for adapting jQuery UI's datepicker to Rails to the following which is available as a gist.
// Based on http://snipt.net/boriscy/datetime-jquery-formtastic/ \$.tools.dateinput.localize("ja", { months: '1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月', shortMonths: '1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月', days: '日曜日,月曜日,火曜日,水曜日,木曜日,金曜日,土曜日', shortDays: '日,月,火,水,木,金,土' }); \$.tools.dateinput.conf.format = 'yyyy-mm-dd'; \$(document).ready(function() { \$.tools.dateinput.conf.lang = \$('html').attr('lang'); \$('div.date, div.datetime').each(function(i, el) { var sels = \$(el).find("select:lt(3)"); var d = new Date(sels[0].value, parseInt(sels[1].value) - 1, sels[2].value); var dateinput = \$(">input type="date" /<").dateinput({ value: d} ); // Without this, the field is initially blank dateinput.val(dateinput.data().dateinput.getValue(\$.tools.dateinput.conf.format)); dateinput.change(function(event, date) { \$(sels[0]).val(date.getFullYear()); \$(sels[1]).val(date.getMonth() + 1); \$(sels[2]).val(date.getDate()); }); \$(sels[0]).before(dateinput); \$(sels).hide(); }); });
By just adding this javascript file, along with the base dateinput widget, you can convert all your date inputs to use the widget. No modification of any internal application or view logic required. The Japanese localization is also included, along with automatic locale switching based on the html's lang attribute.