Hi,
you can do this with the Editor Behaviors of the Data Grid.
function EditorBehaviors(grid DataGrid in, cell Widget in, rowData any in, rowIndex int in, column DataGridColumn in, value any in) returns(Widget) if(column.name == "BPVKPREIS") if(value == "0") value = ""; ARTPREIS_label TextLabel{text = value}; cell.children =[ARTPREIS_label]; end endend
Kind Regards
Marcel-D