I use a RowEditTemplate, when i click a certain cell of wingrid, i want to get the corresponsing cellproxy index, how to get the handle of corresponsing cellproxy ?
Hi,
I'm afraid I do not understand your question. There no such thing as an index to CellProxy. Proxies are not indexed, a proxy is a control on the RowEditTemplate. Since you created the RowEditTemplate, you know which proxy belong to which column in the grid. If you do not know, then the only way to find it in code would be to loop through the controls on the RowEditTemplate and examine the DataBindings on each way to find the one which is bound to the field you want.
thx , I solved this problem.