@andersonalmeidax0/webcomponents 0.1.44 → 0.1.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -162,10 +162,12 @@ class JZListComponentNoRouter extends React.Component {
|
|
|
162
162
|
var _list=null;
|
|
163
163
|
if(this.props.api.findSearch)
|
|
164
164
|
try {
|
|
165
|
+
this.setState({isLoading:true});
|
|
165
166
|
_list=await this.props.api.findSearch(this.state.searchStr,this.props.apiContext);
|
|
166
167
|
if(DEBUGAPICALL_UTIL)alert(JSON.stringify(_list, null, 2));
|
|
167
168
|
_list=this.listModel2View(_list);
|
|
168
169
|
this.setState({list:_list});
|
|
170
|
+
this.setState({isLoading:false});
|
|
169
171
|
this.forceUpdate();
|
|
170
172
|
}catch(error){
|
|
171
173
|
if(error instanceof PlatAPIReturnCodeError ||
|
|
@@ -287,7 +289,7 @@ class JZListComponentNoRouter extends React.Component {
|
|
|
287
289
|
{false&&<XButton label='Remove' icon="fa fa-trash" onClick={this.evtRemove}/>} <span> </span>
|
|
288
290
|
<span> </span>{this.props.listConfig.filterLov&&<XSelect3 isFilter={true} list={this.props.listConfig.filterLov} width={110} onChange={this.evtRefresh} ></XSelect3>}
|
|
289
291
|
<span> </span>{this.props.listConfig.filterSearch&&<XInputExternal readonly={false} cellStyle={true} value={this.state.searchStr} type='text' label='' onXG={(event)=>this.setState({searchStr: event.target.value})} onEnterKey={this.evtRefreshSearch} />}
|
|
290
|
-
<span> </span>{this.props.listConfig.filterSearch&&<XButton label='Filter' textlabel={(this.props.textlabels)?"Search":null} icon=
|
|
292
|
+
<span> </span>{this.props.listConfig.filterSearch&&<XButton label='Filter' textlabel={(this.props.textlabels)?(this.state.isLoading?"Loading...":"Search"):null} icon={this.state.isLoading?'fa fa-spinner fa-spin':'fa fa-search'} onClick={this.evtRefreshSearch}/>} <span> </span>
|
|
291
293
|
<h5 style={{color:'red'}} >{this.state.message}</h5>
|
|
292
294
|
|
|
293
295
|
{<XTableRead
|