Web 2.0 How does weblistbox.cell embed webcheckbox?

web 2.0 How does weblistbox.cell embed webcheckbox?

It has worked fine for me using the following code:


Var lcCadena As String
If Recset.Column("AnyColumn").Value="T" Then
  lcCadena = "<raw><input type='checkbox' checked></input></raw>"
Else
  lcCadena = "<raw><input type='checkbox'></input></raw>"
End If
Lista_Clientes.CellValueAt(Lista_Clientes.LastAddedRowIndex,2) = lcCadena

Look at the variable “lcCadena” …

No problem displaying. How to get the value of the checkbox?
thanks.

1 Like