We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Wrong order of subchilds in I.E.

Hello,

In Internet Explorer, the order of the subchilds is wrong.

You can test it in this sample: https://mvc.syncfusion.com/demos/web/listview/default

For example, the order of the children of Discover Music is:

  1. Hot Singles
  2. Rising Artists
  3. Live Music
  4. Best of 2013 So Far
But  I.E. shows:

  1. Live Music
  2. Rising Artists
  3. Hot Singles
  4. Best of 2013 So Far

Thanks.

1 Reply

DL Deepa Loganathan Syncfusion Team March 11, 2019 10:06 AM UTC

Hi Pedro,  
 
Sorry for the inconvenience caused. 
 
We were able to replicate the reported issue in IE browser. We suggest you to set “ej.support.stableSort” as false in script section of your sample to resolve the issue in your end. Please refer to the following code. 
 
 
@Html.EJ().ListView("locallistview").ShowHeader(true).HeaderTitle("Favorite").HeaderBackButtonText("Back").ShowHeaderBackButton(true).Width(400).ShowHeader(true).Height(300) Items(i => 
{ 
i.Add().Text("Discover Music").Children(child1 => 
{ 
child1.Add().Text("Hot Singles"); 
child1.Add().Text("Rising Artists"); 
child1.Add().Text("Live Music"); 
child1.Add().Text("Best of 2013 So Far"); 
}); 
i.Add().Text("Sales and Events").Children(child2 => 
{ 
child2.Add().Text("100 Albums - $5 Each"); 
child2.Add().Text("Hip-Hop and R&B Sale"); 
child2.Add().Text("CD Deals"); 
}); 
i.Add().Text("Categories").Children(child3 => 
{ 
child3.Add().Text("Songs"); 
child3.Add().Text("BestSelling Albums"); 
child3.Add().Text("New Releases"); 
child3.Add().Text("Bestselling Songs"); 
}); 
i.Add().Text("Mp3 Albums").Children(child4 => 
{ 
child4.Add().Text("Rock"); 
child4.Add().Text("Gospel"); 
child4.Add().Text("Latin Music"); 
child4.Add().Text("Jazz"); 
}); 
i.Add().Text("More in Music").Children(child5 => 
{ 
child5.Add().Text("Music Trade-In"); 
child5.Add().Text("Redeem a Gift Card"); 
child5.Add().Text("Branded T-shirts"); 
child5.Add().Text("Mobile MVC"); 
}); 
}); 
 
 
<script> 
    ej.support.stableSort = false; 
</script> 
 
 
 
We have attached a sample for your reference which can be downloaded from the following link. 
 
 
Regards, 
Deepa L. 


Loader.
Up arrow icon