Search

You searched for the word(s): userid:634844

Matching Posts

  • Re: How to do this with a nested repeater?

    WWorks fine. Thanks. I made a mistake with source:)
    Posted to Data Presentation Controls (Forum) by monolithx on 5/8/2007
  • Re: How to do this with a nested repeater?

    I've just tried it. It doesn't work. The DataSourceID of 'Repeater1' must be the ID of a control of type IDataSource. A control with ID 'System.Collections.Generic.List`1[Jumbo.DTElement]' could not be found. The code is: < asp : Repeater ID ="masterRepeater" runat ="server" DataSourceID ="ObjectDataSource2"> < ItemTemplate > Pano: <% # DataBinder .Eval(Container.DataItem, "PanelName" )%> < br />< br /> < table style ="width: 100%;"> < tr style ="width: 100
    Posted to Data Presentation Controls (Forum) by monolithx on 5/8/2007
  • Re: How to do this with a nested repeater?

    Ahh... I got ya!... But are you sure Eval will correctly cast a List type there? So actually that repeater should automatically go trough the list and do something for each element?
    Posted to Data Presentation Controls (Forum) by monolithx on 5/4/2007
  • Re: How to do this with a nested repeater?

    Hmm, I'm afraid I didn't get you. Here is what I do now: public static List < DTElement > GetTimeLine( int pid, DateTime done, DateTime dtwo) { List < DateTime > tmpBaseList = new List < DateTime >(); tmpBaseList = GetBaseDateList(done, dtwo); List < DateTime > tmpMaskList = new List < DateTime >(); tmpMaskList = GetMaskDateList(pid, done, dtwo); List < DTElement > tmpDTEList = new List < DTElement >(); tmpDTEList = GetTimeLineList(tmpBaseList, tmpMaskList
    Posted to Data Presentation Controls (Forum) by monolithx on 5/4/2007
  • Re: How to do this with a nested repeater?

    The general idea is to make it like this: <masterRepeater> <ItemTemplate> <%# DataBinder.Eval(Container.DataItem, 'contractTitle') %><%# DataBinder.Eval(Container.DataItem, 'contractID') %> <childRepeater> -----> for each contractTitle repeat days affected <%# DataBinder.Eval(Container.DataItem, 'date.Day') %>. </childRepeater> </ItemTemplate> </masterRepeater> How to make childRepeater to use contractID of each masterRepeater item to repeat
    Posted to Data Presentation Controls (Forum) by monolithx on 5/4/2007
  • How to do this with a nested repeater?

    I am currently using a repeater to display a list (array) of List datetime pair values. The code is: <asp:Repeater ID='Repeater1' runat='server' DataSourceID='ObjectDataSource1'> <ItemTemplate> <div class='<%# DataBinder.Eval(Container.DataItem, 'CssClass') %>'> &nbsp;<%# DataBinder.Eval(Container.DataItem, 'date.Day') %>. <%# DataBinder.Eval(Container.DataItem, 'date.Month') %> &nbsp;<br /> <%# DataBinder.Eval(Container.DataItem, 'date.Year')
    Posted to Data Presentation Controls (Forum) by monolithx on 5/4/2007
  • Re: AJAX on medium-trust

    1. Shared server so no way. 2. Shared server so no way. 3. Don't you still need basic AJAX to use AJAX Toolkit? :|
  • AJAX on medium-trust

    Is there a way to force AJAX to work on medium-trust and to make it work WITHOUT host interference e.g. like putting some dll into the BIN folder of my application? Atlas beta worked fine. AJAX doesn't. Help! ATM I have huge production problems.
  • Find/Replace

    Hi. I need a bit of help. I need to do a lot of changes to the source code on a lot of similar lines. I need to replace sides of the = sign in code. expression1 = expression2 to be expression2 = expression1 and I've tried using wildcards, but it seems like VS is bugged. I've tried using (<*>)=(<*>) search pattern and to replace it with \2=\1 replace match, but it doesn't work (and I suppose it should). Neither (*)=(*) works... Any idea why and what am I doing wrong here? Thanks.
    Posted to Visual Studio 2005 (Forum) by monolithx on 2/12/2007
Page 1 of 11 (108 items) 1 2 3 4 5 Next > ... Last »