Skip to content

Commit

Permalink
Remove H3 formatting and change to présent tense.
Browse files Browse the repository at this point in the history
  • Loading branch information
burkeholland committed Jul 24, 2012
1 parent 8bfcf10 commit 43d8bfb
Showing 1 changed file with 21 additions and 23 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish: true

## DataBinding

### Binding to **List<Selectlistitem>** Collection
Binding to **List<Selectlistitem>** Collection:

#### Old

Expand All @@ -24,7 +24,7 @@ publish: true
.DataTextField(“Text”)
.DataValueField(“Value”)

### Manually Create Items
Manually creating items:

#### Old

Expand All @@ -40,7 +40,7 @@ publish: true
.DataTextField(“Text”)
.DataValueField(“Value”)

### Ajax Binding
Ajax binding:

#### Old

Expand All @@ -61,7 +61,7 @@ publish: true
.DataTextField(“Text”)
.DataValueField(“Value”)

### Define **Delay**
Defining **Delay**:

#### Old

Expand All @@ -75,7 +75,7 @@ publish: true
.Name(“Combo”)
.Delay(300)
### Define **ServerFiltering**
Defining **ServerFiltering**:

#### Old

Expand All @@ -93,7 +93,7 @@ Not supported
.DataTextField(“Text”)
.DataValueField(“Value”)
### Send Parameters to the Server
Sending Parameters to the server:

#### Old

Expand Down Expand Up @@ -128,7 +128,7 @@ Not supported
}
</script>

### Bind to a Collection Which Is Not a **List<Selectlistitem>**:
Binding to a collection which is not a **List<Selectlistitem>**:

#### Old

Expand All @@ -144,7 +144,7 @@ Not supported

## Other Options

### Filter
Filter:

#### Old

Expand All @@ -162,7 +162,7 @@ Not supported
.Filter(FilterType.StartsWith)
)

### Minimum Characters
Minimum characters:

#### Old

Expand All @@ -180,7 +180,7 @@ Not supported
.MinLength (2)
)

### Define Suggestion (Autofill) of the ComboBox
Define suggestion (Autofill) of the ComboBox:

#### Old

Expand All @@ -190,7 +190,7 @@ Not supported

Html.Kendo().ComboBox().Name("AjaxComboBox").Suggest(true)

### Set Placeholder
Setting the placeholder:

#### Old

Expand All @@ -202,7 +202,7 @@ Not supported
//Html5 placeholder
Html.Kendo().ComboBox().Name("AjaxComboBox"). Placeholder (“2”)

### Define Animations
Defining the animations:

#### Old

Expand All @@ -211,7 +211,7 @@ Not supported
#### New
Html.Kendo().ComboBox().Name("AjaxComboBox") .Animation(animation => animation.Open(open => open.FadeIn(FadeDirection.Down))

### Set **AutoBind**
Setting **AutoBind**:

#### Old

Expand All @@ -221,7 +221,7 @@ Not supported

Html.Kendo().ComboBox().Name("Combo").AutoBind(false)

### Set **SelectedText** When **AutoBind** False
Setting **SelectedText** when **AutoBind** is false:

#### Old

Expand All @@ -233,7 +233,7 @@ Not supported

Html.Kendo().ComboBox().Name("Combo").AutoBind(false).Text(“Chai”)

### Highlight First Item
Highlighting the first item:

#### Old

Expand All @@ -243,7 +243,7 @@ Not supported

HighlightFirst (true)

### Kendo Does Not Support Action Syntax - “() => {}”. All Widgets Does Not Have **Onload** Event.
Kendo does not support action syntax - “() => {}”. all widgets do not have **Onload** event:

#### Old

Expand All @@ -253,7 +253,7 @@ Not supported

Html.Kendo().ComboBox().Name("Combo").Events( events => events.Change(“change”))

### Define Template
Defining templates:

#### Old

Expand All @@ -263,7 +263,7 @@ Not supported

Html.Kendo().ComboBox().Name("Combo").Template(“#= data.CompanyName #”)

### Define Height of Popup Element
Defining the height of the popup element:

#### Old

Expand All @@ -273,7 +273,7 @@ Not supported

Html.Kendo().ComboBox().Name("Combo").Height(300)

### Cascading Functionality
Cascading functionality:

#### Old

Expand All @@ -283,7 +283,7 @@ Not supported

Html.Kendo().ComboBox().Name("Combo").CascadeFrom(“Id of the parent ComboBox”)

### Encode
Encode:

#### Old

Expand All @@ -295,9 +295,7 @@ Not supported

## Client-Side API

##### MVC

Kendo
#### MVC -> Kendo

##### value

Expand Down

0 comments on commit 43d8bfb

Please sign in to comment.