I'm migrating an existing MVC 5 app to core, and several of my grids have command columns. I tried this:
<e-column header-text="Orders" text-align="Center" width="60">
<e-commands>
<e-command type="edit1" >
<e-button-options text="Edit"
width="32px"
click="onStandingClick"
content-type="ImageOnly"
prefix-icon="glyphicon glyphicon-user"
enabled="@Model.EditOrders" />
</e-command>
...
I get an ArgumentNullException inside one of the tag handlers. I can't tell exactly which element is giving it the problem, but somewhere "output.TagName" is null when it shouldn't be. Am I doing anything strange in the markup?
Also, it'd be very nice, especially in a command but also elsewhere, if the "Title" html attribute would be more accessible. It's a pain to have to create a dictionary and pass it to the html attributes tag.