Move row from one gridpanel to another

Page 1 of 2 12 LastLast
  1. #1

    Move row from one gridpanel to another

    Hi,
    how can i move selected row to another gridpanel
    Plz help me its very urgent
    thanks in advance
  2. #2
  3. #3
    Quote Originally Posted by Daniil View Post
    Ya i saw that. I have two different grids fetching data from two different tables. In this case how can i move?
  4. #4
    Are there different columns in these two grids?
  5. #5
    Quote Originally Posted by Daniil View Post
    Are there different columns in these two grids?
    ya different columns
  6. #6
    Reply me plz daniil
  7. #7
    Well, you should change a record in a respective way before moving.
  8. #8
    How can i change? i am not getting
    Thank u for ur reply
  9. #9
    You have an array of records in the add and addAll functions.

    To change a separate record, please use:
    record.data.someField1 = record.data.someField2;
    Or, it would be best to create a new record and fill its fields basing on a record you moved.
  10. #10
    var ApproveProject = function (source, destination) {
                source = source || Proposalgrid;
                destination = destination || companygrid;
                if (source.hasSelection()) {
                    var records = source.selModel.getSelections();
                                  source.deleteSelected();
                    destination.store.add(records)
    }
    }
    am using this code. but row data is not adding. only empty row adding on button click
    Last edited by Daniil; Dec 28, 2011 at 9:36 AM. Reason: Please use [CODE] tags
Page 1 of 2 12 LastLast

Similar Threads

  1. [CLOSED] Move up/down gridpanel , delete gridpanel data can not work
    By gs_user in forum 2.x Legacy Premium Help
    Replies: 2
    Last Post: Jul 27, 2012, 12:37 AM
  2. GridPanel move rows drag and drop
    By cbu in forum 1.x Help
    Replies: 2
    Last Post: Jan 13, 2012, 2:20 PM
  3. Problem about Gridpanel editor move
    By zhangsir199 in forum 1.x Help
    Replies: 3
    Last Post: Dec 13, 2010, 12:32 PM
  4. [CLOSED] Gridpanel Rows Move
    By speedstepmem3 in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Aug 28, 2009, 6:46 AM
  5. [CLOSED] GridPanel Move Row Up/Down
    By Immobilmente in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Jan 12, 2009, 12:40 PM

Posting Permissions