Grid with Paging Toolbar Dirty flag

  1. #1

    Grid with Paging Toolbar Dirty flag

    I have bind Grid with few records on loading page, While checking Grid has any Dirty (without doing any changes)
    on Paging Toolbar number Field showing isDirty True.

    How to make by default it is false ?
    after refresh or load Grid, it should be (isDirty) false flag

    I have used this function for check any dirty

    var hasDirtyChild = function() {

    var grid = App.GridPanel1;
    Ext.each(grid.query('*'), function (item) {
    if (item.isDirty && item.isDirty()) {
    ret = true;
    }
    });
    }
    Last edited by shimith; Jul 07, 2021 at 2:24 PM. Reason: add function I have used for check grid has Dirty
  2. #2
    Hello @shimith!

    Just a quick heads up; it is pretty hard to tell what's wrong without a test case and not knowing for which version of Ext.NET your inquiry is directed. If you let us know the version of Ext.NET you are using, we can move your thread to the corresponding forum.
    Fabrício Murta
    Developer & Support Expert
  3. #3

    Version Info

    Hi I am using Version 4.7.1

Similar Threads

  1. [CLOSED] insert to grid store not showing red dirty flag
    By susanz in forum 4.x Legacy Premium Help
    Replies: 3
    Last Post: Jun 27, 2017, 1:50 PM
  2. [CLOSED] set dirty flag
    By Z in forum 3.x Legacy Premium Help
    Replies: 3
    Last Post: Nov 16, 2015, 12:18 PM
  3. [CLOSED] enable dirty flag for new row added to grid
    By susanz in forum 2.x Legacy Premium Help
    Replies: 4
    Last Post: Sep 07, 2014, 2:13 AM
  4. [CLOSED] TreePanel remove dirty red arrow flag
    By jchau in forum 2.x Legacy Premium Help
    Replies: 4
    Last Post: Feb 09, 2013, 4:40 AM
  5. Adding SelectedItem to Combobox sets the Dirty Flag
    By solderingking in forum 2.x Help
    Replies: 0
    Last Post: Nov 22, 2012, 5:18 AM

Posting Permissions