Hi,
steps to reproduce:
open web code editor
add a mock delay to the mocked AjaxStore, make it lengthy - 20secs or so, to trigger loading mask appearing:
AjaxHelper.mockUrl('/pagedMockUrl', async (url, params) => { await new Promise(resolve => setTimeout(resolve, 20000)); // ... rest of the codenote the loading spinner appearing
add
loadMask: {
html: "why u no work?" },to the AjaxStore config
observe the old loading spinner appearing
Expected result: html overrides the loadMask html.