Dear Mr. Rao,
is it possible to color the columns when we use inline editing like shown in 2).
Thanks in advance
Otto

is it possible to color the columns when we use inline editing like shown in 2).
Thanks in advance
Otto


Dear Mr. Rao,
is it possible to change the font for the column which is edited.
Thanks in advance
Otto
You may use
oCol:bClrEdit and
oCol:oEditFont
Dear mr. Rao,
Thank you. This is working fine.
Is it also possible to set the color of the get field inside the column.
Thanks in advance
Otto
Is it also possible to set the color of the get field inside the column.



oCol := oBrw:AddCol()
oCol:cHeader  := "Zoom"
oCol:nWidth  :=  38
oCol:cEditPicture := '9.9'
oCol:bEditValue := { || _FIELD->ZOOM }
oCol:nDataStyle := oCol:DefStyle( AL_RIGHT, .T.)
oCol:nEditType  := EDIT_GET
oCol:bOnPostEdit := {|o, v| ( NET_RLOCK( 5, 5 ), ;
     _FIELD->ZOOM := v, DBUNLOCK() ), ;
    DBCOMMIT(), NET_ULOCK(), ;
     oBrw:Refresh(), oBrw:SetFocus() }
oCol:bClrstd := {|| { 16777215, 8421376 } }  // White / Green  14248960 = blue
oCol:bClrEdit := {|| { 0, 255 } }
oCol:oEditFont := oFont3Initially the entire get text is selected. What is seen is the select color of Get.
Once the user starts typing ( or in Fast Edit, the get is invoked by typing a character ) it is the specified get color you see
Hello Uwe,
in my case if I change method edit and assign cPic := "@K" and comment
// ::oEditGet:SelectAll()
I get the behaviour I want.
Best regards,
Otto