Package com.smartgwt.client.callbacks
Interface MockDSExportCallback
public interface MockDSExportCallback
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Callback fired upon successful completion ofReify.getMockDS()
orReify.showMockDS()
: Output for allDataSources
together is reported as the single string parameterallDSData
.
-
Method Details
-
execute
Callback fired upon successful completion ofReify.getMockDS()
orReify.showMockDS()
:- Output for all
DataSources
together is reported as the single string parameterallDSData
. When usingformat
: "reifyCSV", output for separate DataSources is separated by a special marker. - Output with each
DataSource
as a separate string array element is also available as the parameterperDSData
, ordered to match thedsNames
parameter inReify.getMockDS()
orReify.showMockDS()
.
Note that in the case of
Reify.showMockDS()
, the callback is fired after the window is closed, not when it's populated.- Parameters:
allDSData
- concatenated output for allDataSources
perDSData
- same output but delivered as a per-DS array
- Output for all
-