I have a scenario where I need to call an event handler on a "list" view control in app.xml during the render event. My goal is to hide or disable records in the "list" view based on a flag value.
<list displayPageSize="5" id="WorkExecution.WorkItemsView_workOrder_list" queryBase="getMyAssignedWork" recordLabel="Work Order {0}" resolverClass="application.handlers.WOListHandler" resolverFunction="resolveWonumLabel" resource="workOrder" transitionTo="WorkExecution.WorkDetailView" >
......... </list>
Is there a way to achieve hiding or disabling records in the "list" view?