Browse By Tags

  • when to validate a grid cell?

    I have popup dialog the contains a datagrid and two buttons Ok and Cancel. 

    I would like the data grid to validate the cells as the user edits the cells.

    When a user enters a value, I validate the cell value on leaving the edit mode.   If the cell is…

  • Active cell to Edit when mooving with up/down/left/right keys

    Hi,

    In a wingrid everytime I click on up/down/left or right key, the next cell must be activate to edit, I searched a lot in the forum, I tried many example but nothing is working, this what I was implemanting :

    public void grd_KeyDown(object sender…

  • Is there an event after a column grouping was removed

    Hi,

    I search an event that appears after a column was removed from the group by area of the UltraGrid.

    The AfterColPosChanged and AfterGroupPosChanged events are not fired after this action.

    Thanks in advance.

  • which image clicked in button

    Hi!

    I've combined zero or more bitmaps together (based on data retrieved from a database) to form one bitmap.  This new combined bitmap is then set as the image for a column in the grid:

                    Bitmap dwpBitmap = ConstructDWPBitmap(dwpList, out typeListString…
  • Persisting Grid State

    Anyone know how I can persist all of my existing application's grid states easily?  I'm trying to use SaveAsXml then load the state at the bottom of my grid's Initialize_layout event.  However, finding a good event to save the state is proving…

  • UltraWinGrid change checkbox behavior

    Hi, 

    Is it posible to change the behavior of a checkbox. This checkbox is showed in a bound column (DataType = GetType(Boolean)) of an UltraWinGrid.

    Now when I click in a cell of that column the checkbox changed its state. I would like to click in a…

  • UltraGrid OnBeforeColumnChooserDisplayed event doesn't fire in most cases.

    Hello! I have a problem. I have a component that has UltraGrid component on it. Let's call it MyComponent. And I use it in different situations and load different data to it from different data sources. Some of them load lazily  from these data sources, some…

  • Which Event fired when displaying row

    I'd like populate value to unbound column when row is displayed.

    I know there is initRow event but this seems to be fired for all populated rows before show grid.

    What I'm looking for is event fired for actually displayed rows only

    (So let…

  • Best Event For Row Sizing?

    Here's my issue. I have n UltraWinGrid in an ExpandableGroupBox, and when a user wants to re-size a row, I want the group box to grow or shrink as the row increases or decreases in size.

    What event can I use that will give me the ability to change…

  • Bound UltraWinGrid: be notified of new rows insertion

    Hello,

    I have an UltraWinGrid control which is bound to a DataTable.

    A new row is inserted to this DataTable upon an user action.

    The new row is inserted into the grid and appears successfully.

    My problem now is that I want to be notified by an UltraGrid…