- Kendo UI Cookbook
- Sagar Ganatra
- 204字
- 2021-12-08 12:47:19
Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "The Kendo UI library exports an object, kendo
, which is a namespace for various other objects and functions."
A block of code is set as follows:
var template = kendo.template("Full Name: " + "<span> #= lastName # </span>," + "<span> #= firstName # </span>");
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
<div
data-role="view"
data-layout="defaultLayout">
<div
id="touchSurface"
data-role="touch"
data-enable-swipe="1"
data-touchstart="touchstart"
data-swipe="swipe"
data-tap="tap"
data-doubletap="doubletap"
data-hold="hold"
style="height: 200px;">
Touch Surface
</div>
</div>
Any command-line input or output is written as follows:
Directory1 is checked: no
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "For example, if the first name is not specified, the message would be First Name is required."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- The DevOps 2.3 Toolkit
- 程序員面試白皮書
- Oracle Exadata性能優化
- Securing WebLogic Server 12c
- QTP自動化測試進階
- Python忍者秘籍
- Learning PHP 7
- Kotlin Programming By Example
- Unity 2017 Game AI Programming(Third Edition)
- C++17 By Example
- 分布式數據庫HBase案例教程
- Java面向對象程序設計教程
- Enterprise Application Architecture with .NET Core
- MySQL核心技術與最佳實踐
- Go語言編程之旅:一起用Go做項目