OpenDCL Forums

OpenDCL => Studio/Dialog Editor => Topic started by: dbalogh on November 23, 2007, 03:40:38 AM

Title: dcl_ListView_CancellabelEdit
Post by: dbalogh on November 23, 2007, 03:40:38 AM
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
Title: Re: dcl_ListView_CancellabelEdit
Post by: dayange on January 21, 2008, 10:46:27 PM
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).
Title: Re: dcl_ListView_CancellabelEdit
Post by: dbalogh on January 22, 2008, 10:18:36 PM
Will check it!
Thanx,
Daniel