List View can’t have headers but has on-click functionality, thus we can’t sort only certain columns (like clicking the header and the columns below automatically sort ascendingly/descendingly).
Data Grid has headers but has no on-click functionality (so if I want to show a customer details in a pop-up by clicking the customer’s name on the table, I can’t).
What if I need both headers and on-click functionality? I think this is one of the limitations of Mendix that I find most frustrating.
No support for No Sql Database like
Srijan,
You have asked a very open ended question. Kindly explain the context of your question so that we can provide more meaningful answer. However, if you ask at a broad level, Mendix has a lot of strong features, which enable the faster and collaborative development with minimal coding skills. It definitely has a lot of areas of development and just from my personal perspective< i would say:
The above are just an example.
Adding to Shekhar:
Move the header inside the listview and use this in your SCSS file
.custom-listviw-child.mx-listview {
li{
.mx-listview-header{
display: none;
}
}
li:first-child {
.mx-listview-header {
display: inline-table;
}
}
ul > li:first-child {
border-top: 0px solid transparent;
}