Search

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

Matching Posts

  • Re: Dynamic Data Filtering

    Russ, I am guessing the issue is that the boolean filter user control is always appending a IsClosed == true or IsClosed == false where criteria. You need a third state where no criteria is specified. I will work up an example and post it on my blog when I have it finished. Josh
    Posted to ASP.NET Dynamic Data (Forum) by jheyse on 12/15/2008
  • Re: DynamicFilterForm Query String URL

    Rob, Take a look at the browse command within DynamicFilterForm. It will produce a url which allows for 'deep linking' search queries. <asp:Button CommandName="Browse" runat="server">Browse</asp:Button> Josh
    Posted to ASP.NET Dynamic Data (Forum) by jheyse on 11/11/2008
  • Re: Dynamic Data Question regarding search on Grids.

    You could also check out the open source project Dynamic Data Filtering on CodePlex. http://www.codeplex.com/DynamicDataFiltering . The project has similar functionality to that described in the article referenced above. There are also examples for adding filtering to the list.aspx and listdetails.aspx schaffolding pages.
    Posted to ASP.NET Dynamic Data (Forum) by jheyse on 11/3/2008
  • Re: FieldTemplateUserControl.ChildrenPath

    The easiest place to change this would be the in the LINQ-to-SQL DBML. If you change the name of the column in the dbml it will be reflected in Dynamic Data.
    Posted to ASP.NET Dynamic Data (Forum) by jheyse on 10/24/2008
  • Re: Dynamic field

    Gavin, Check this thread out. http://forums.asp.net/p/1272065/2408326.aspx#2408326 The code snippet I believe you are looking for is: protected void DetailsView1_PreRender( object sender, EventArgs e) { string value = Session[ "FirstName" ].ToString(); if (! string .IsNullOrEmpty( value )) { var ftuc = DetailsView1.FindFieldTemplate( "FirstName" ) as FieldTemplateUserControl; if (ftuc != null ) { var tb = ftuc.DataControl as TextBox; tb.Text = value ; tb.Enabled = false ; } }
    Posted to ASP.NET Dynamic Data (Forum) by jheyse on 10/24/2008
  • Re: Non-unique where parameters

    Nic, Dynamic Data Filtering is compatible with 3.5 SP1. After you install Dynamic Data FIltering you should have additional controls in your toolbox if you installed the Dynamic Data Filtering.msi. I have also included a version which does not add the controls (Dyanmic Data Filtering w/o Toolbox Installer) which is for people running VS Express. Either way if you are missing the controls, you can add them to the tool box by right-clicking on the toolbox and selecting Choose Items... To get you up
    Posted to ASP.NET Dynamic Data (Forum) by jheyse on 10/24/2008
  • Re: FilterRepeater filter "Filters"

    Jamie, Sjnaugton has a good post on this on his blog on this very topic. http://csharpbits.notaclue.net/2008/05/dynamicdata-limit-filter-fields.html
    Posted to ASP.NET Dynamic Data (Forum) by jheyse on 10/24/2008
  • Re: How to search grid results based on user provided values?

    Joel, With this implementation of the Filter Control you don't need to use any attributes. You can specify which columns can be sorted via the Columns property on the TableTextFilterControl to supply a list of comma separated values of searchable columns. I had mentioned in my blog post that a better implementation would be one which read in the Metadata about the model as opposed to the column. The example I posted was just a short implementation to give you an idea of how to implement such
    Posted to ASP.NET Dynamic Data (Forum) by jheyse on 10/23/2008
  • Re: Custom Template Control Referencing

    Jamie, If I had to guess, I would think the UriRouting may be causing you an issue while trying to reference the ~/DynamicData/Controls/ directory. Is there any reason you can't move your Controls directory to ~/DynamicData/Content/Controls?
    Posted to ASP.NET Dynamic Data (Forum) by jheyse on 10/23/2008
  • Re: Custom Template Control Referencing

    How are you referencing the control? Is it static or dynamic? Can you provide some code examples?
    Posted to ASP.NET Dynamic Data (Forum) by jheyse on 10/22/2008
Page 1 of 5 (43 items) 1 2 3 4 5 Next >