I have numerous razor pages with various controls that have events - for example, grids with "load" set in order to hook up a ForeignKeyAdaptor. Most of them are working fine.
However, on a couple pages, none of the controls will fire any of there events. One such page has a checkbox, a dropdown, and a grid (see below). None of the events are firing. On the checkbox, I'm able to debug into it and see that the "_trigger" function is being called, but doesn't end up calling the assigned function "onWaiveChange(args)".
Is there anything obvious that could cause every control on a page to not be able to fire it's events? I've compared the grid tags between a working one and a non-working one, and can't see any differences. Also, I can't get it to reproduce in a sample app.
Thanks for the help...
brian
<ej-check-box id="waiveDelivery"
change="onWaiveChange"
value="@Model.Order.WaiveDeliveryCharge" />
<ej-drop-down-list id="deliverTo"
change="onDeliverChange"
datasource="@Model.Customers"
value="@Model.Order.DeliverToID"
watermark-text="Select customer (optional)"
width="300px">
<e-drop-down-list-fields id="CustomerID" value="CustomerID" text="Name" />
</ej-drop-down-list>
<ej-grid id="GridContainer"
allow-resize-to-fit="true"
allow-sorting="true"
allow-text-wrap="true"
is-responsive="true"
enable-responsive-row="true"
show-summary="true"
load="onLoad">
...