Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
485
When do we really need to use an Datasource
posted

When do be really use an Datasource.

How datasource is different from assigning the datasource(may be ArrayList,Array ) to gris directly

Parents
  • 469350
    Offline posted

    The UltraWinGrid MUST have a DataSource in order to function at all.

    The best DataSource to use is one that implements IBindindlist. This includes a DataSet, DataTable, UltraDataSource, or BindingList<T>.

    You can also use an IList such as a List<T>, ArrayList, Array, or Collection, but these objects have limited support for DataBinding and you will have limited functionality in the grid. For example, the grid will not be notified when data in the data source changes, nor will the grid be able to add new rows to the data source.

Reply Children