RowSelectorColumn

  • Thread starter Thread starter Chip
  • Start date Start date
C

Chip

Andy Smith's control (metabuilders.com/Tools/RowSelectorColumn.aspx ) is
everywhere and I'm feeling pretty stupid. I've placed the dll in my /bin
directory, registered the control, added the column to my datagrid, and it
works! VS.NET even renders it in design mode (2002 didn't). However, when I
go to reference it, it won't compile -- Type RowSelectorColumn is not
defined. There is no documentation on what, if any, "Import" to add to the
page.

Anybody out there got this control to work in Code Behind? I saw one post
that claims it won't work with Code Behind so at least one other person is
feeling my pain...

Chip
 
I got an answer to this. Aside from adding a project reference, which I had
done already, in the IDE, you need to use the fully qualified name, as in:

Dim rsc As MetaBuilders.WebControls.RowSelectorColumn = _
MetaBuilders.WebControls.RowSelectorColumn.FindColumn(grdList)
 
Back
Top