SmartClient Version: v13.1p_2024-12-18/AllModules Development Only (built 2024-12-18)
Hello, please try this test case:
you'll see that the "Pending" style for the headerItem is different from the normal headerItem style:

while I think they must be equal.
Hello, please try this test case:
Code:
isc.DynamicForm.create({
colWidths: [100, 200],
showPending: true,
fields: [
{type:"header", defaultValue:"Registration Form"}
]
});
isc.DynamicForm.create({
top: 50,
colWidths: [100, 200],
fields: [
{type:"header", defaultValue:"Registration Form"}
]
});
while I think they must be equal.
Comment