Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Gowtham174
Creator
Creator

Sorting Loaded order Field in Mashup

Hi Team,

I have considered field in the loaded order and I need to show in  radio button in Mashup, Sorting order is showing correctly and selection on the fields is not working.

Can you please help me on this code.

 

<p ng-repeat="row in DashboardFilter2" class="ng-scope mb-0 ml-3">
<input type="radio" id="{{row[0].qText}}" ng-click="row[0].select()" name="radio-group2" ng-checked="{{row[0].qState=='S'}}">
<label for="{{row[0].qText}}"> {{row[0].qText}}</label>
</p>

 

 

QlikApp.createList({
"qFrequencyMode": "V",
"qDef": {
"qFieldDefs": [
"%Type"
],

"qSortCriterias": [
{
"qSortByLoadOrder": 1
}
],
"autoSort": false
},
"qExpressions": [],
"qInitialDataFetch": [
{
"qHeight": 20,
"qWidth": 1
}
],
"qLibraryId": null
},function (reply, app){

$scope.DashboardFilter2 = reply.qListObject.qDataPages[0].qMatrix;

});

 

Thanks,

Gowtham

0 Replies