Skip to content

Commit f50fa8a

Browse files
authored
docs(combobox): Fix typos
1 parent c549aef commit f50fa8a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

controls/combobox/troubleshooting/optimizing-the-combobox.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ position: 1
1414

1515
##
1616

17-
The best approach to optimize the performance speed of Telerik RadComboBox when using huge amount of items is using the **load-on-demand** feature.The **load-on-demand** mechanism loads the items only when the user types or clicks in the field or the drop-arrow image. You can also load the items only upon clicking on the drop arrow. To do this you should set the **ShowDropDownOnTextboxClick** property to false. For even faster load of the page, you can leave the combobox empty when it is first rendered on the page. Items will be added as soon as the user clicks in the input field, the drop-arrow image or types some text into the input field. In other words, you can add the items only in the **ItemsRequested** event handler or via **WebService**.
17+
The best approach to optimize the performance speed of Telerik RadComboBox when using huge amount of items is using the **load-on-demand** feature. The **load-on-demand** mechanism loads the items only when the user types or clicks in the field or the drop-arrow image. You can also load the items only upon clicking on the drop arrow. To do this you should set the **ShowDropDownOnTextboxClick** property to false. For even faster load of the page, you can leave the combobox empty when it is first rendered on the page. Items will be added as soon as the user clicks in the input field, the drop-arrow image or types some text into the input field. In other words, you can add the items only in the **ItemsRequested** event handler or via **WebService**.
1818

1919
When using the load-on-demand mechanism with **ItemsRequested** event you should:
2020

@@ -56,12 +56,12 @@ End Sub
5656

5757
**ShowMoreResultsBox** and **EnableVirtualScrolling**
5858

59-
When you load the combobox items from heavy database, you can cache the data source so that additional calls are avoided. This will make the combobox event faster.
59+
When you load the combobox items from heavy database, you can cache the data source so that additional calls are avoided. This will make the combobox even faster.
6060

6161
A sample project can be seen here: [Load On Demand](http://demos.telerik.com/aspnet-ajax/ComboBox/Examples/PopulatingWithData/AutoCompleteSql/DefaultCS.aspx)
6262

6363
# See Also
6464

65-
* [Overview]({%slug combobox/load-on-demand/overview%})
65+
* [Load-on-Demand Overview]({%slug combobox/load-on-demand/overview%})
6666

6767
* [Loading Items from a Web Service]({%slug combobox/load-on-demand/loading-items-from-a-web-service%})

0 commit comments

Comments
 (0)