Grid with Paging Toolbar Dirty flag

Threaded View

Previous Post Previous Post   Next Post Next Post
  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

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