Skip to content
Open
Show file tree
Hide file tree
Changes from 3 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)
![Suggestion box placement at bottom in Xamarin.Android ComboBox.](images/bottom.png)

## SuggestionBox placement at top

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

![](images/top.png)
![Suggestion box placement at top in Xamarin.Android ComboBox.](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 in Xamarin.Android ComboBox.](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)
![Suggest and append mode in Xamarin.Android ComboBox.](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)
![Start words with input text in Xamarin.Android ComboBox.](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)
![Starting letter with case sensitive in Xamarin.Android ComboBox.](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 contains input text in Xamarin.Android ComboBox.](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 contains case sensitive in Xamarin.Android ComboBox.](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)
![Equal words to input text in Xamarin.Android ComboBox.](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)
![Equal word with case sensitive in Xamarin.Android ComboBox.](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)
![Ending word with input text in Xamarin.Android ComboBox.](images/endswith.png)

### Filter with character casing

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

{% endtabs %}

![](images/endswithcasesensitive.png)
![Ending word with case sensitive in Xamarin.Android ComboBox.](images/endswithcasesensitive.png)


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

{% endtabs %}

![](images/customfilter.png)
![Custom filter in Xamarin.Android ComboBox.](images/customfilter.png)