diff options
-rw-r--r-- | app/php/components/UserSelection.tpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/php/components/UserSelection.tpl b/app/php/components/UserSelection.tpl index 0532cef..6c19013 100644 --- a/app/php/components/UserSelection.tpl +++ b/app/php/components/UserSelection.tpl @@ -2,20 +2,20 @@ Selected calendars: <br /> <com:TRepeater ID="Categories" OnItemDataBound="categoryDataBind"> <prop:ItemTemplate> - <%# $this->DataItem->Name %><br /> + <%# $this->Data->Name %><br /> <com:TRepeater ID="Calendars"> <prop:ItemTemplate> <com:TLinkButton Text="[X]" OnCommand="SourceTemplateControl.removeFromSelection"> - <prop:CommandParameter><%# $this->DataItem->ID %></prop:CommandParameter> + <prop:CommandParameter><%# $this->Data->ID %></prop:CommandParameter> <prop:Visible><%# !$this->SourceTemplateControl->UserToDisplay->IsGuest %></prop:Visible> </com:TLinkButton> - <%# $this->DataItem->Name %> + <%# $this->Data->Name %> <com:THyperLink Text="(www)" Target="_blank"> - <prop:NavigateUrl><%# $this->DataItem->Website %></prop:NavigateUrl> + <prop:NavigateUrl><%# $this->Data->Website %></prop:NavigateUrl> </com:THyperLink> <br /> </prop:ItemTemplate> |