Hi, Joe
I encountered one problem today with my module for mojoPortal (mojoportal-2-1-4):
when I add some repeater to a module, e.g.:
<asp:Repeater ID="rptList" runat="server" OnItemCommand="rptList_ItemCommand">
<ItemTemplate>
<asp:Button ID="Button1" runat="server" CommandName="MyButton" Text="AAA" />
</ItemTemplate>
</asp:Repeater>
events from controls inside repeater are not fired. I.e. when you press Button1, the "rptList_ItemCommand" is not called.
The most strange thing - when I directly place the same module control (.ascx) on a blank .aspx page, events from repeater work just fine.
Have you any ideas?
Vitaly.