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
2 changes: 1 addition & 1 deletion Xamarin-iOS/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.Ios ComboBox.](images/filtering.png)
8 changes: 4 additions & 4 deletions Xamarin-iOS/SfComboBox/Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ this.Add(combobox);

{% endtabs %}

![](images/gettingstarted.png)
![Getting started mode in Xamarin.Ios ComboBox.](images/gettingstarted.png)

## Combo box modes

Expand Down Expand Up @@ -136,7 +136,7 @@ this.Add(combobox);

{% endtabs %}

![](images/gettingstartednoneditable.png)
![Getting started non-editable mode in Xamarin.Ios ComboBox.](images/gettingstartednoneditable.png)

## Editable combo box

Expand Down Expand Up @@ -180,7 +180,7 @@ this.Add(combobox);

{% endtabs %}

![](images/gettingstartededitable.png)
![Getting started non-editable mode in Xamarin.Ios ComboBox.](images/gettingstartededitable.png)

## Selecting an item

Expand Down Expand Up @@ -237,6 +237,6 @@ PresentViewController(okAlertController, true, null);

{% endtabs %}

![](images/gettingstartedselecteditem.png)
![Getting started with selected item in Xamarin.Ios ComboBox.](images/gettingstartedselecteditem.png)

You can find the complete getting started sample from this [here.](http://www.syncfusion.com/downloads/support/directtrac/general/ze/ComboboxGettingStaretedSample1179764127 )
2 changes: 1 addition & 1 deletion Xamarin-iOS/SfComboBox/Overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ documentation: ug

The combo box control allows users to choose an option from the list of predefined options. When the arrow icon accompanied with this component is pressed, the drop-down displays a list of values, from which users can select an option.

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

## Key Features

Expand Down
6 changes: 3 additions & 3 deletions Xamarin-iOS/SfComboBox/Suggestion-Display-Mode.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ combobox.ComboBoxMode = ComboBoxMode.Suggest;

{% endtabs %}

![](images/suggest.png)
![Suggest dropdown display in Xamarin.Ios ComboBox.](images/suggest.png)

## Append

Expand All @@ -49,7 +49,7 @@ combobox.ComboBoxMode = ComboBoxMode.Append;

{% endtabs %}

![](images/append.png)
![Append mode in Xamarin.Ios ComboBox.](images/append.png)

## Both append and suggest in drop-down

Expand All @@ -65,5 +65,5 @@ combobox.ComboBoxMode = ComboBoxMode.SuggestAppend;

{% endtabs %}

![](images/suggestappend.png)
![Suggest append mode in Xamarin.Ios ComboBox.](images/suggestappend.png)

18 changes: 9 additions & 9 deletions Xamarin-iOS/SfComboBox/Various-Filter-Options-for-Suggestion.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Displays a list of suggestions based on the starting letter.

{% endtabs %}

![](images/startswith.png)
![Start words with input text in Xamarin.Ios ComboBox.](images/startswith.png)

### Filter with character casing

Expand All @@ -75,7 +75,7 @@ Displays a list of suggestions based on the starting letter with case sensitive.

{% endtabs %}

![](images/startswithcasesensitive.png)
![Starting letter with case sensitive in Xamarin.Ios ComboBox.](images/startswithcasesensitive.png)

## Words that contain the input text

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

{% endtabs %}

![](images/contains.png)
![Words that contains input text in Xamarin.Ios ComboBox.](images/contains.png)

### Filter with character casing

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

{% endtabs %}

![](images/containswithcasesensitive.png)
![Words that contains case sensitive in Xamarin.Ios ComboBox.](images/containswithcasesensitive.png)

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

Displays the word that matches the input text.

Expand All @@ -123,7 +123,7 @@ Displays the word that matches the input text.

{% endtabs %}

![](images/equals.png)
![Equal words to input text in Xamarin.Ios ComboBox.](images/equals.png)

### Filter with character casing

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

{% endtabs %}

![](images/equalswithcasesensitive.png)
![Equal word with case sensitive in Xamarin.Ios ComboBox.](images/equalswithcasesensitive.png)

## Words that ends with input text

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

{% endtabs %}

![](images/endswith.png)
![Ending word with input text in Xamarin.Ios ComboBox](images/endswith.png)

### Filter with character casing

Expand All @@ -171,7 +171,7 @@ combobox.SuggestionMode = SuggestionMode.EndsWithCaseSensitive;

{% endtabs %}

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


### Custom filter
Expand Down