You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice to allow text or int values for these instead of a double. Especially since you give the ability to change the icons used.
Also, perhaps not have it highlight all options below the selection too and only highlight the one selected could be very useful too.
The double is limiting the usage to only a rating system where it can easily be used for a quality system too.
For now, you can use a List and use the rating as an index (convert to int) to get the value but it's a little annoying.
e.g.
_qualityOptions = [
{id:'poor', name:'Poor'},
{id:'fair', name:'Fair'},
{id:'good', name:'Good'},
];
// Get name
_qualityOptions[rating.round() -1].name
// Get id
_qualityOptions[rating.round() -1].id
While this isn't an important feature, I believe it could be used in a lot more ways if it wasn't restricted to a double.
The text was updated successfully, but these errors were encountered:
It would be nice to allow text or int values for these instead of a double. Especially since you give the ability to change the icons used.
Also, perhaps not have it highlight all options below the selection too and only highlight the one selected could be very useful too.
The double is limiting the usage to only a rating system where it can easily be used for a quality system too.
For now, you can use a List and use the rating as an index (convert to int) to get the value but it's a little annoying.
e.g.
While this isn't an important feature, I believe it could be used in a lot more ways if it wasn't restricted to a double.
The text was updated successfully, but these errors were encountered: