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
4695
title and add rows
posted

Dear all,

(1) I have set this.ultragrid1.Text="xxxx", but the text does not show??

(2) If I have created the static DataSet and assign to the ultragrid, How can I make it be able to add rows or data?? As This DataSet is blank at first, it only store the added data and ADD to the DB when OK Button clicked.

Parents
No Data
Reply
  • 469350
    Offline posted

    rchiu5hk said:
    (1) I have set this.ultragrid1.Text="xxxx", but the text does not show??

    The grid caption is visible by default. So if the text is not showing up, either something in your code is clearing out the Text property after you set it, or something in your code is setting the grid.DisplayLayout.CaptionVisible property to False.

    rchiu5hk said:
    (2) If I have created the static DataSet and assign to the ultragrid, How can I make it be able to add rows or data?? As This DataSet is blank at first, it only store the added data and ADD to the DB when OK Button clicked.

    Set the AllowAddNew property on the grid.DisplayLayout.Override.

Children
No Data