Table Editable Attribute Issue #3249
-
Is there an existing issue for this?
Describe the bug升級8.4.1 後造成Table 欄位無法呈現,原因是Table Attribute 設定AutoGenerateColumns="false" Column Attribute 設定成Editable="false" 後造成,原先8.4.0 是正常呈現 Expected Behavior將Table Attribute 設定AutoGenerateColumns="false" Column Attribute 設定成Editable="true" 後正常如下: Steps To Reproducehttps://github.com/james-chao/BootstrapBlazorApp1.git Exceptions (if any)No response .NET Version8.0.202 Anything else? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
@james-chao Thank you for reporting. We will give triage later. |
Beta Was this translation helpful? Give feedback.
-
@james-chao Column Attribute 設定成 现在的逻辑是 设置 |
Beta Was this translation helpful? Give feedback.
@james-chao Column Attribute 設定成
Editable="false"
现在就是不应该显示的,这没问题。老版本代码没有检查这个参数现在的逻辑是
TableColumn
的Editable
等同于AutoGenerateColumn
中的Ignore
设置后就是不显示,并且不会出现在ColumnList
中设置
Visible="false"
不显示但是会出现在ColumnList
中,通过设置IsVisibleWhenAdd="true"
新建时可编辑 设置IsVisibleWhenEdit
更新时可编辑