In the MainDemo, I set the in-line edit mode for Task to Batch.
XAML<ListView Id="DemoTask_ListView" InlineEditMode="Batch" />
Then I replace the default editor for int with a custom one.
C#[PropertyEditor(typeof(int), true)]
public class MyIntPropertyEditor : ASPxIntPropertyEditor
{
public MyIntPropertyEditor(Type objectType, IModelMemberViewItem info)
: base(objectType, info)
{
}
}
Now when I start MainDemo and navigate to Task - the integer fields ActualWork and EstimatedWork have become read-only.
It works fine if the in-line edit mode is Inline.
It works fine if I don't use a custom editor.
The problem exists in 15.2.6 and 15.2.5. I don't know about earlier versions.
Source code attached.