Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    ListgridField hiden nohiden with datasource use

    Hey i try to change the visible from ListGridFields per Button



    Code:
    dataSource.getField(fieldNames[i]).setDetail(true);
    make the field hiden

    but


    Code:
    dataSource.getField(fieldNames[i]).setDetail(false);
    dont make ist Visible

    any ideas ?

    #2
    See ListGridField.setShowIfCondition for details on how to do this. You don't make changes to a DS to change visibility in the UI - that is a UI function.

    Comment

    Working...
    X