The EntitySpaces Community

Share and learn about the EntitySpaces Architecture.
Welcome to The EntitySpaces Community Sign in | Join | Help
in
Home Forums Photos

EnitySpaces Developer 2007.1.1024.0

Last post 10-29-2007, 2:59 PM by kimble01. 10 replies.
Sort Posts: Previous Next
  •  10-25-2007, 6:38 AM 6062

    EnitySpaces Developer 2007.1.1024.0

    I am trying to generate the aspx templates using the 2007.1.1024.0 beta, and while they compile correctly, I get this error in all templates:

    The IListSource does not contain a data source named ''.  Check your DataMember value.

    I read the pst that led to your posting a patch for MySql, perhaps this is related? 

    Thanks in advance,

    Gary

  •  10-25-2007, 6:51 AM 6063 in reply to 6062

    Re: EnitySpaces Developer 2007.1.1024.0

    That issue was corrected in 2007.1.1024.0, and other users have confirmed it resolved their issues. Did you regenerated your business objects after you updated to 1024? Another idea perhaps you have a reference to the previous beta assemblies somewhere?

    Regards,

    Scott Schecter
    EntitySpaces | My Site
  •  10-25-2007, 11:26 AM 6068 in reply to 6063

    Re: EnitySpaces Developer 2007.1.1024.0

    The MySQL patch only fixes a problem where you have a TEXT data type in your MySQL table and save Unicode characters to it.

    On the other hand, updating references is a constant problem. To update references I would remove any references in my project, and re-add them using the Browse tab, not the .NET tab. The .NET tab acts more like a reference MRU, and often will just re-use any old, out-dated dll that it finds.


    David Neal Parsons
    www.entityspaces.net
  •  10-26-2007, 2:25 PM 6102 in reply to 6063

    Re: EnitySpaces Developer 2007.1.1024.0

    The link you give references the ascx Gridloader, I am speaking of the aspx templates. Have those been tested with the new version?
  •  10-26-2007, 2:34 PM 6103 in reply to 6102

    Re: EnitySpaces Developer 2007.1.1024.0

    Please see the 'Web Admin Grids' pdf that is installed under EntitySpaces in your start menu programs. The same templates can be used for both aspx and dnn ascx. We provide GridLoader Projects to load the generated user controls in both cases. These can be found at C:\Program Files\EntitySpaces\GridLoaders.

    Regards,

    Scott Schecter
    EntitySpaces | My Site
  •  10-27-2007, 7:48 AM 6112 in reply to 6103

    Re: EnitySpaces Developer 2007.1.1024.0

    I am not talking about or trying to use ascx or gridloader projects. I am trying to generate web admin aspx templates. They fail on the last line of code below:

        Protected Overrides Sub LoadGrid()
       
            Dim coll As CategoryCollection = New CategoryCollection()
            If Not Me.GetSortExpression("gvBrowse") = Nothing AndAlso Me.GetSortExpression("gvBrowse").Length > 0 Then
           
                If Me.GetSortDirection("gvBrowse") = "Ascending" Then
                    coll.Query.OrderBy(Me.GetSortExpression("gvBrowse"), esOrderByDirection.Ascending)
                Else
                    coll.Query.OrderBy(Me.GetSortExpression("gvBrowse"), esOrderByDirection.Descending)
                End If
            End If
           
            If Me.SearchHasBeenLoaded = True Then
                LoadEntityForSeach(coll)
            End If
           
            If Not coll.Query.Load() Then
                ' Force it to show headers but disable "Select"
                coll.AddNew()
                Me.gvBrowse.Columns(0).Visible = false
                Me.lblRecords.Text = "0 Records Found"
            Else
                If Me.gvBrowse.AllowPaging Then
                    Dim pageStart As Integer = (Me.gvBrowse.PageIndex * Me.gvBrowse.PageSize) + 1
                    Dim pageEnd As Integer = Math.Min(pageStart + Me.gvBrowse.PageSize - 1, coll.Count)
                    Me.lblRecords.Text = "Record " & pageStart.ToString() & " to " & pageEnd.ToString() & " of " & coll.Count.ToString()
                Else
                    Me.lblRecords.Text = "Record 1 through " & coll.Count.ToString()
                End If
            End If

            Me.gvBrowse.DataSource = coll
     

  •  10-27-2007, 2:14 PM 6118 in reply to 6112

    Re: EnitySpaces Developer 2007.1.1024.0

    Could you please confirm for me that when you double-click "My Project" in solution explorer, and go to the References tab, all EntitySpaces references are for 2007.1.1024.0?
    David Neal Parsons
    www.entityspaces.net
  •  10-29-2007, 9:04 AM 6141 in reply to 6118

    Re: EnitySpaces Developer 2007.1.1024.0

    There isn't a "My Project" since this is a website. In my business object layer, which the website references and does have a this directory, I have checked and it is still referencing 2007.1.1.1021.0.  I am aghast since I know I have updated the references. I will attempt to correct this...

     Thanks,

    Gary

  •  10-29-2007, 9:10 AM 6142 in reply to 6141

    Re: EnitySpaces Developer 2007.1.1024.0

    Just went through and removed and re-added the references, browsing to the installation/redistributables. It did not make any difference, the references still say the older version...I am going to re-install then retry these steps to see if that makes a difference... Stumped!
  •  10-29-2007, 9:55 AM 6143 in reply to 6142

    Re: EnitySpaces Developer 2007.1.1024.0

    Make sure when you re-add the references that you do not use the "Recent" tab, browse specifically to the references , also, Remove them, close the IDE, then re-add them by browsing directly to them in our install folders.

    EntitySpaces | Twitter | BLOG | Please honor our Software License
  •  10-29-2007, 2:59 PM 6152 in reply to 6143

    Re: EnitySpaces Developer 2007.1.1024.0

    Chalk up another Vista issue. I installed this from over a network share...which Vista doesn't allow, but it goes through all the motions. Copy the setup to the local hard drive and then regenerate the solution solves the issue.

    Thanks for the reponses...

    Gary

View as RSS news feed in XML