...Now I see another issue with the DataList and WebControlAdapter.
When it is placed inside of a table cell, only the first data item is
rendered within that cell. The next item is rendered below the table
row containing the DataList - and so on! Every next item is rendered
before a table closes. Strange, isn't it?
I am using a GridView, this works fine with WebControlAdapter and even
within a DataList.
Kind regards, Sebastian
> I am using a GridView, this works fine with WebControlAdapter and even
> within a DataList.
Ok, this is not true when I replace the surrounding DataList by a
Repeater. But nevertheless, I found the source: Both, DataList and
DataGrid render a <table> element around their usual table. This
disturbs the DOM, because <table> elements should contain rows and
cells.
I was able to fix that behaviour by overriding WebControlAdapter's
RenderBeginTag and RenderEndTag methods. This derived
WebControlAdapter cannot be used for all controls, because most of
them need their begin and end tags. (I was surprised that the CPU load
grows incredibly when using this for all controls. I think the
HtmlWriter does something wierd here.)
Unfortunately I still don't know what causes DataList and DataGrid to
discard their Item styles. Maybe I misunderstood some important things
about the ControlAdapter stuff. As I said, I just want to modify just
some aspects (i.e. remove IDs) instead of completely exchange the
rendering process.
Kind regards, Sebastian
Sebastian Paul - 17 Aug 2007 10:32 GMT
> Unfortunately I still don't know what causes DataList and DataGrid to
> discard their Item styles.
Seems like I got it. The DataGrid simply does not need an adapter. So
I exclude the control like that:
<controlAdapters>
<adapter controlType="System.Web.UI.WebControls.DataList"
adapterType="" />
<adapter controlType="System.Web.UI.WebControls.GridView"
adapterType="" />
<adapter controlType="System.Web.UI.WebControls.WebControl"
adapterType="MyNamespace.MyWebControlAdapter" />
</controlAdapters>
That way, all controls (inclusive those created by DataList or
DataGrid) are rendered by my Adapter, but the DataGrid itself behaves
as normal.
Sebastian