I created 2 store, one that load data from database ,and the other is empty, with 2 grids, i can can drag and drop data from grid 1 to grid 2. so the store 2 will contain data. what is the best way to retrive all the data that are in the store 2 from code behind c#.

link|improve this question

24% accept rate
feedback

2 Answers

I think the following Ext.NET example can help. The sample demonstrates moving data between two GridPanel/Store Components, then submitting the results of the second GridPanel/Store.

See http://examples.ext.net/#/GridPanel/Miscellaneous/Two_Grids/

link|improve this answer
feedback

I think, unfortunately, you can't get in code behind values from Grid or Store when use submit form or calling DurectEvent. This data is not submitted. The reason is to minify request, because if your form will contain many stores in some time they will submit too many unuseful data. Maybe solution exists but I don't know it.

Of course if you want some logic like in this example you can use it http://examples.ext.net/#/GridPanel/WebService_Connections/StoreEvents/. But in most situations you need more simple solution. Just getting records ids in store in one string that will be sended to server. Example:

function getStoreValues(store) {
    var a = [];
    store.each(function (r) { a.push(r.id); })
    return a.join(',')
}

Full example you will find here: http://pastebin.com/pgSfgPt3

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.