Please, is it a way to make checkboxes read only in Grids?
Thank you very much again
<ww:wwWebDataGridColumn id="wwWebDataGridColumn2" Expression="this.Page.DrawCheckBox()" />
You can then implement a page level function that produces the HTML for this control
FUNCTION DrawCheckBox() lcOutput = [<input type="checkbox" id="chkControl_] + TRANS(cursor.Id) + ; [" ] + iif(cursor.IsReqiured,[ checked="checked"],[]) + ; [/>] RETURN lcOutput ENDFUNC
More info here:
wcdocs:_1oj1boxsb.htm
+++ Rick ---