API事件onEventLoading本页内容onEventLoading Description 当事件从数据源加载时触发 onEventLoading: (ev: object) => boolean;Parameters ev - (required) object - 事件对象(表示数据项) Returns result - (boolean) - 决定默认事件操作是否继续执行(true)或被取消(false) Examplescheduler.attachEvent("onEventLoading", function(ev){ // 可以在这里添加自定义逻辑 return true;});Details 此事件可以被阻止。返回 false 会阻止该数据项加载到 scheduler 中。 每个数据源中的数据项都会触发此事件。 Need help?Got a question about the documentation? Reach out to our technical support team for help and guidance. For custom component solutions, visit the Services page.