需要帮助使用 Infragistics webdatagrid
Need help to work with Infragistics webdatagrid
我是第一次在 Infragistics webdatagrid 中工作。
至此,我安装了trail版,并成功绑定了data(datatable)到webdatagrid。现在我需要编辑该 webdatagrid 中的数据。
我用谷歌搜索了它,但我无法获得关于它的准确和大量信息。所以我卡住了
如果有人工作过或知道,能否请您指导我正确的方向?
谢谢
卡尔提克
要编辑网格中的单元格,您需要添加 EditingCore 行为,然后向其中添加 CellEditing 行为。例如:
<Behaviors>
<ig:Activation />
<ig:Selection RowSelectType="Multiple" CellClickAction="Row" />
<ig:EditingCore>
<Behaviors>
<ig:CellEditing Enabled="true" >
<EditModeActions EnableF2="true" EnableOnActive="true" MouseClick="Single" />
<ColumnSettings>
<ig:EditingColumnSetting ColumnKey="CustomerID" ReadOnly="true" />
</ColumnSettings>
</ig:CellEditing>
</Behaviors>
</ig:EditingCore>
</Behaviors>
这取自 Cell Editing - Basic Features 在线样本。
我是第一次在 Infragistics webdatagrid 中工作。
至此,我安装了trail版,并成功绑定了data(datatable)到webdatagrid。现在我需要编辑该 webdatagrid 中的数据。
我用谷歌搜索了它,但我无法获得关于它的准确和大量信息。所以我卡住了
如果有人工作过或知道,能否请您指导我正确的方向?
谢谢 卡尔提克
要编辑网格中的单元格,您需要添加 EditingCore 行为,然后向其中添加 CellEditing 行为。例如:
<Behaviors>
<ig:Activation />
<ig:Selection RowSelectType="Multiple" CellClickAction="Row" />
<ig:EditingCore>
<Behaviors>
<ig:CellEditing Enabled="true" >
<EditModeActions EnableF2="true" EnableOnActive="true" MouseClick="Single" />
<ColumnSettings>
<ig:EditingColumnSetting ColumnKey="CustomerID" ReadOnly="true" />
</ColumnSettings>
</ig:CellEditing>
</Behaviors>
</ig:EditingCore>
</Behaviors>
这取自 Cell Editing - Basic Features 在线样本。