dcl_ListView_CancellabelEdit

Started by dbalogh, November 23, 2007, 03:40:38 AM

Previous topic - Next topic

dbalogh

Hi again,

I just try to get a cell locked in my grid. The Object browser offers the method:

(dcl_ListView_CancelItemEdit BOM_Builder_R12_Form2_Grid11).

When writing the code to lisp, the function is not recognized, but there is a function called

dcl_ListView_CancellabelEdit,
which is unfortunatelly not listed/described in the object browser.
So I guess, the new one replaced CancelItemEdit, but how to call this function?

Just giving it into
(defun c:BOM_Builder_R12_Form2_Grid11_OnSelChanged (nRow nCol /)
  (dcl_ListView_CancellabelEdit BOM_Builder_R12_Form2_Grid11)
)
does not work.

Thanks again,
Daniel

dayange

I found a slip of pen: in grid control intelligent help, the CancelItemEdit function is written as(dcl_ListView_CancelItemEdit), the right function should be (dcl_Grid_CancelItemEdit).

dbalogh