Line 9... |
Line 9... |
9 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
9 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
10 |
import org.tela_botanica.client.modeles.ValeurListe;
|
10 |
import org.tela_botanica.client.modeles.ValeurListe;
|
11 |
import org.tela_botanica.client.modeles.ValeurListeAsyncDao;
|
11 |
import org.tela_botanica.client.modeles.ValeurListeAsyncDao;
|
12 |
import org.tela_botanica.client.synchronisation.Sequenceur;
|
12 |
import org.tela_botanica.client.synchronisation.Sequenceur;
|
13 |
import org.tela_botanica.client.util.Debug;
|
13 |
import org.tela_botanica.client.util.Debug;
|
- |
|
14 |
import org.tela_botanica.client.util.UtilString;
|
Line 14... |
Line 15... |
14 |
|
15 |
|
15 |
import com.extjs.gxt.ui.client.Registry;
|
16 |
import com.extjs.gxt.ui.client.Registry;
|
16 |
import com.extjs.gxt.ui.client.data.BasePagingLoadConfig;
|
17 |
import com.extjs.gxt.ui.client.data.BasePagingLoadConfig;
|
17 |
import com.extjs.gxt.ui.client.data.BasePagingLoadResult;
|
18 |
import com.extjs.gxt.ui.client.data.BasePagingLoadResult;
|
Line 38... |
Line 39... |
38 |
public void load(TransformateurJSONaModelData reader, Object loadConfig, AsyncCallback callback, String recherche) {
|
39 |
public void load(TransformateurJSONaModelData reader, Object loadConfig, AsyncCallback callback, String recherche) {
|
39 |
this.reader = reader;
|
40 |
this.reader = reader;
|
40 |
this.callback = callback;
|
41 |
this.callback = callback;
|
41 |
this.loadConfig = loadConfig;
|
42 |
this.loadConfig = loadConfig;
|
Line 42... |
Line 43... |
42 |
|
43 |
|
- |
|
44 |
BasePagingLoadConfig lc = (BasePagingLoadConfig)loadConfig;
|
43 |
BasePagingLoadConfig lc = (BasePagingLoadConfig)loadConfig;
|
45 |
if (this.structureId != null && !UtilString.isEmpty(this.structureId)) {
|
- |
|
46 |
mediateur.selectionnerStructureAPersonne(this, this.structureId, this.roleId, recherche, lc.getOffset(), lc.getLimit(), sequenceur);
|
- |
|
47 |
} else {
|
44 |
mediateur.selectionnerStructureAPersonne(this, this.structureId, this.roleId, recherche, lc.getOffset(), lc.getLimit(), sequenceur);
|
48 |
this.rafraichir(null);
|
- |
|
49 |
}
|
Line 45... |
Line 50... |
45 |
}
|
50 |
}
|
46 |
|
51 |
|
47 |
@Override
|
52 |
@Override
|