SmartClient Version: v12.1p_2022-10-18/AllModules Development Only (built 2022-10-18)
Chrome on MacOS
Hello, please modify the xmlDataSource sample in the showcase like this:
you'll see in the RPC tab of the dev console, for the fetch operation, an AdvancedCriteria like that:
Chrome on MacOS
Hello, please modify the xmlDataSource sample in the showcase like this:
Code:
isc.ListGrid.create({
ID: "countryList",
width:500, height:224, alternateRecordStyles:true, showAllRecords:true,
dataSource: countryDS,
autoFetchData: true,
implicitCriteria: {'countryCode': 'US'}
})
Code:
data:{
operator:"and",
criteria:[
{
fieldName:"countryCode",
operator:"iContains",
value:"US"
},
{
fieldName:"countryCode",
operator:"iContains",
value:"US"
}
]
},
Comment