Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions xamarin-android/SfComboBox/ComboBox-Modes.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ comboBox.IsEditableMode = true;

{% endtabs %}

![](images/editable.png)
![Editable mode in Xamarin.Android ComboBox.](images/editable.png)

## Non-editable combo box

Expand All @@ -37,5 +37,5 @@ comboBox.IsEditableMode = false;

{% endtabs %}

![](images/noneditable.png)
![Non-editable mode in Xamarin.Android ComboBox.](images/noneditable.png)

4 changes: 2 additions & 2 deletions xamarin-android/SfComboBox/Dealing-with-SuggestionBox.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ combobox.SuggestionBoxPlacement = SuggestionBoxPlacement.Bottom;
{% endhighlight %}
{% endtabs %}

![](images/bottom.png)
![Bottom placement of suggestin box.](images/bottom.png)

## SuggestionBox placement at top

Expand All @@ -42,4 +42,4 @@ combobox.SuggestionBoxPlacement = SuggestionBoxPlacement.Top;
{% endhighlight %}
{% endtabs %}

![](images/top.png)
![Suggetion box placement at the top.](images/top.png)
2 changes: 1 addition & 1 deletion xamarin-android/SfComboBox/Filtering-Option.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ combobox.AllowFiltering = true;

{% endtabs %}

![](images/filtering.png)
![Filtering option of dropdown list.](images/filtering.png)
2 changes: 1 addition & 1 deletion xamarin-android/SfComboBox/Overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ documentation : ug

The combo box is a text box component that allows users to type a value or choose an option from the list of predefined options. This has several out-of-the-box features such as data binding, filtering, and UI customization.

![](images/overview.png)
![Overview of Xamarin.Android ComboBox.](images/overview.png)

## Key features

Expand Down
2 changes: 1 addition & 1 deletion xamarin-android/SfComboBox/Suggestion-Display-Mode.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,5 @@ comboBox.ComboBoxMode = ComboBoxMode.SuggestAppend;

{% endtabs %}

![](images/comboboxmode.png)
![Dropdown display suggestion(combo mode).](images/comboboxmode.png)

20 changes: 10 additions & 10 deletions xamarin-android/SfComboBox/Various-Filter-Options-for-Suggestion.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Displays the list of suggestions based on the starting letter.

{% endtabs %}

![](images/startswith.png)
![Words that start with the input text (StartsWith).](images/startswith.png)

### Filter with character casing

Expand All @@ -72,7 +72,7 @@ Displays the list of suggestions based on the starting letter with case sensitiv

{% endtabs %}

![](images/startswithcasesensitive.png)
![Words that start with the input text (case-sensitive).](images/startswithcasesensitive.png)

## Words that contain the input text

Expand All @@ -88,7 +88,7 @@ Displays the list of suggestions if the combo box list contains that words.

{% endtabs %}

![](images/contains.png)
![Words that contain the input text (Contains).](images/contains.png)

### Filter with character casing

Expand All @@ -104,9 +104,9 @@ Displays the list of suggestions if the combo box list contains that words with

{% endtabs %}

![](images/containswithcasesensitive.png)
![Words that contain the input text (contains case-sensitive).](images/containswithcasesensitive.png)

## Words that equals to input text
## Words that equals to input text

Displays the word that matches.

Expand All @@ -120,7 +120,7 @@ Displays the word that matches.

{% endtabs %}

![](images/equals.png)
![Words equal to the input text (Equals).](images/equals.png)

### Filter with character casing

Expand All @@ -136,7 +136,7 @@ Displays the word that matches with case sensitive.

{% endtabs %}

![](images/equalswithcasesensitive.png)
![Words equal to the input text (case-sensitive).](images/equalswithcasesensitive.png)

## Words that ends with input text

Expand All @@ -152,7 +152,7 @@ Displays the list of suggestions based on the ending word.

{% endtabs %}

![](images/endswith.png)
![Words that end with the input text (EndsWith).](images/endswith.png)

### Filter with character casing

Expand All @@ -168,7 +168,7 @@ comboBox.SuggestionMode = SuggestionMode.EndsWithCaseSensitive;

{% endtabs %}

![](images/endswithcasesensitive.png)
![Words that end with the input text (case-sensitive).](images/endswithcasesensitive.png)


### Custom filter
Expand All @@ -184,7 +184,7 @@ comboBox.SuggestionMode = SuggestionMode.Custom;

{% endtabs %}

![](images/customfilter.png)
![Custom filter applied to suggestions (example).](images/customfilter.png)