Would you like to see this page in English? Click here.


または
1-Clickで注文する場合は、サインインをしてください。
こちらからも買えますよ
この商品をお持ちですか? マーケットプレイスに出品する
jQuery UI: A Code-centered Approach to User Interface Design
 
その他のイメージを見る
 

jQuery UI: A Code-centered Approach to User Interface Design [ペーパーバック]

Eric Sarrion

価格: ¥ 2,062 通常配送無料 詳細
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
通常1~3週間以内に発送します。 在庫状況について
この商品は、Amazon.co.jp が販売、発送します。 ギフトラッピングを利用できます。

キャンペーンおよび追加情報

  • 掲載画像とお届けする商品の表紙が異なる場合があります。ご了承ください。


商品の説明

内容説明

The jQueryUI applies the power and standards of jQuery to user interface design. The library provides elegant versions of many features HTML5 lacks, including tabs, accordions, and dialogs. It also provides programming support for common but complex tasks like managing drag and drop and autocomplete. This code-heavy guide demonstrates how to apply this power to common web situations.

著者について

Eric Sarrion has written on Rails, HTML and CSS, J2EE, and JavaScript for O'Reilly France. He manages a small training and development company.

登録情報


この商品にタグをつける

 (詳細)
タグは、商品との関連性が非常に強いキーワードまたはラベルのようなものです。
タグにより、すべてのお客様がお気に入りの商品の整理と確認を行うことができます。
※タグは初期設定で公開になっています。詳しくはこちら
 

カスタマーレビュー

Amazon.co.jp にはまだカスタマーレビューはありません
星5つ
星4つ
星3つ
星2つ
星1つ
Amazon.com で最も参考になったカスタマーレビュー (beta)
Amazon.com:  3件のカスタマーレビュー
3 人中、3人の方が、「このレビューが参考になった」と投票しています。
for the jQuery UI novice (not for the hardened JS professional) 2012/4/10
By R. Friesel Jr. - (Amazon.com)
形式:ペーパーバック
Eric Sarrion's "jQuery UI" (published by O'Reilly) is a beginner-to-intermediate level overview of the jQuery UI library and its widgets. [1] Sarrion walks through these widgets one-by-one, chapter-by-chapter, offering a description for each, elaborating on the UI problem that each is designed to solve, and then detailing the API for each of these widgets. Each chapter is constructed after this pattern, illustrating how to setup your mark-up to best work with these widgets, how to initialize and interact with each widget type, and then showing some example implementations of varying degrees of sophistication.

If you are a JavaScript novice, or else are new to jQuery or its UI library, then Sarrion's book is a good for getting up and running fast. Each chapter is reasonably self-contained--e.g., if you just need to learn the ins and outs of the jQuery UI dialog(), then you can blow through chapter 4 in about 15 minutes and pick up enough to create a reasonably sophisticated modal dialog. Each chapter includes a series of tables that provide a quick reference for each method/widget's available options, methods, and events. Further, the example code at the end of each chapter is a valuable way to get some ideas about how to put each widget into action. [2] These explanations and examples are easier to digest than the documentation [3] and examples that are otherwise available in the jQueryUI.com demos.

That being said, if you *are* a web development professional with sophisticated JavaScript knowledge, you may find yourself grinding your teeth all over the place here. And that's not just because we're talking about an elementary introduction to a popular UI widget library with an almost brain-dead-simple API. It's because--as they say--the devil is in the details, and boy are there some cringe-worthy details:

 *Sloppy mark-up.* Sarrion mentions that Internet Explorer needs a doctype, but then does not go on say what a doctype is, or why it's necessary or what the consequences of omitting the doctype are... And/but then he doesn't quote the attribute values in his sample HTML either. Even a footnote or two on such subjects would suffice.

 *Non-idiomatic JavaScript.* Everyone has their own style, I get that. But there are some things that are just... _strange_ when you see them. Sarrion apparently likes to put a _space_ between the method name and the parens when invoking a function. I have never seen code like that before and had to go and look it up. "Can you even do that?" [4] Opening curly braces on a new line, that's one thing [5], but a space between the name and invoking parens on every page was enough to make me want to scream.

 *Non-idiomatic and arguably _dangerous_ JavaScript.* Beyond "everyone has their own style", we get into the area where you have valid code that is otherwise not really _good_ code because its known to be _error-prone_ code. I am talking (of course?) about single line 'if' statements [6], == comparisons, browser detection [7], and other minor transgressions. I take issue with these mainly because of what I perceive to be the audience: if the book is targeted toward beginner and intermediate level devs, then we have a responsibility to set a good example.

 *Confusing details in the tables.* I have a bit of a bone to pick with whomever was responsible for getting these tables together. First: the second (explanatory) column in most tables in more chapters had the heading "Function". Granted, it is easy to figure out from the context that "Function" here means "intended purpose of the thing listed in the left column"--but this is a book on JavaScript and as such, it pays to be careful with that word; that word means something specific. Second: (and this is probably a more egregious error) _don't split function names._ This may very well have been an accident, and looking back, I only see the one but... when the method name is 'getDate', don't let it break onto two lines like that. [8]

The laundry list of quibbles aside, my two big disappointments were as follows: First: I was hoping for some more sophisticated coverage of the jQuery UI library. In a lot of ways, the text is just a re-hash and/or expansion on the jQuery UI documentation. This is fine for JavaScript novices, or else for folks that just want to get up and running with the library quickly [9] and don't care about a deep dive or its inner-workings. Second: I was also looking for more in the way of plugin development. jQuery UI is already a pretty feature-rich library, but there are always places where you can expand on it, or else create your own purpose-built widgets for your apps. There is no real discussion here of the library's idioms or patterns, nor of how to approach extending the library or writing plugins or widgets around it. [10]

Again, if you're a JavaScript lightweight and are just looking to get going quickly with jQuery UI--then this book could be super helpful for you. If you're a bit more sophisticated... borrow your neighbor's copy in a pinch, but don't get your hopes up beyond what you'd otherwise be able to look up online.

---

[1] Sarrion's "jQuery UI" covers version 1.8, but I noticed that it does not cover the position utility. As the position utility is currently flagged on the website as "new", then I presume that the book went to press before that utility's release.

[2] Though I was disappointed that there was no associated Github repo.

[3] I'm tempted to go as far as to say they're "superior" to the official documentation, which I've always felt were sort of tacked on. It isn't as though jQuery UI has a terribly complex API (it doesn't, though it is quirky and idiomatic-unto-itself (which: "I guess it's internally consistent, at least")) -- it's just that the official docs focus more on the examples and bury the actual documentation "down there" below the fold, like an after thought. "Minus one to that", if you ask me.

[4] Turns out that you can. But: !?!?!?

[5] A thing I don't like, but whatever.

[6] Doubly dangerous because they're missing their curly braces.

[7] As opposed to feature detection.

[8] Table 8-9, I'm looking in your direction.

[9] E.g., a junior or mid-level dev in an organization that is already using jQuery UI; e.g., an e-commerce shop that is heavy on back-end devs and just wants to put some quick polish on their site.

[10] This is only partly true. I give Sarrion some big-time bonus points for the calculator example at the end of chapter 5 where he builds the thing up as a one-off, then re-factors it into a plugin-style widget.
3 人中、1人の方が、「このレビューが参考になった」と投票しています。
Comprehensive 2012/3/25
By gabs - (Amazon.com)
形式:ペーパーバック
Suitable for both beginners or experienced developers. Basic and advanced features are covered (drag and drop, autocomplete...). Contents are illustrated with concrete examples. Nice book!
4 人中、1人の方が、「このレビューが参考になった」と投票しています。
very good, i'm satisfied 2012/3/24
By nady - (Amazon.com)
形式:ペーパーバック
very good book, concise and precise. I knew a little j-query and it is true that the first reading this book I know more.
I remain satisfied by this author.

クチコミ

クチコミは、商品やカテゴリー、トピックについて他のお客様と語り合う場です。お買いものに役立つ情報交換ができます。
この商品のクチコミ一覧
内容・タイトル 返答 最新の投稿
まだクチコミはありません

複数のお客様との意見交換を通じて、お買い物にお役立てください。
新しいクチコミを作成する
タイトル:
最初の投稿:
サインインが必要です
 

クチコミを検索
すべてのクチコミを検索
   


リストマニア

リストを作成

関連商品を探す


同じキーワードの商品を探す


フィードバック


Amazon.co.jpのプライバシー ステートメント Amazon.co.jpの発送情報 Amazon.co.jpでの返品と交換