Posts by alexandreubaldo • 31 points
3 posts
-
0
votes1
answer111
viewsA: Moneymask Does Not Work on Device
I don’t know if you can edit the code of the plugin in question, but if you can, upgrade to keyup or other non-keyboard related event like "change".
-
0
votes1
answer24
viewsA: Render different Partialviews randomly
Well, you could create a For Loop, and check if the values are null, I do not know if it is orthodox but would be something like: @{ var length = Model.Manuais.Count > Model.Videos.Count ?…
-
3
votes2
answers55
viewsA: Get information stored in an "attribute"
You can use the Getcustomattributes method: TableAttribute.GetCustomAttributes(typeof(Cliente), false).OfType<TableAttribute>().FirstOrDefault().Name; Remember to treat possible exceptions.…