Search

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

Matching Posts

  • Re: customizing display data

    Make sure your partial class name is the same as in the designer generated class. Usually the partial class does not contain the s in the end. I hope this helps. Maíra
    Posted to ASP.NET Dynamic Data (Forum) by maira.wenzel on 8/28/2008
  • Re: Column headers and Data Entry descriptions

    Oh, and you already have the DysplayNameAttribute from the System.ComponentModel namespace as well for column headers. Maíra
    Posted to ASP.NET Dynamic Data (Forum) by maira.wenzel on 8/27/2008
  • Re: Column headers and Data Entry descriptions

    You could use the DescriptionAttribute from the System.ComponentModel namespace. This attribute provides a textual message that will popup when the mouse pointer is moved over a field during editing (tooltip). I hope this helps. Maíra
    Posted to ASP.NET Dynamic Data (Forum) by maira.wenzel on 8/27/2008
  • Re: Localization

    The objects have to be public. So change this: [DisplayName( "Category Name" )] // at the browser it displayed as "CategoryName" :( private object CategoryName { get ; set ; } to [DisplayName( "Category Name" )] public object CategoryName { get ; set ; } Thanks, Maíra
    Posted to ASP.NET Dynamic Data (Forum) by maira.wenzel on 8/27/2008
  • Re: Localization

    I suppose you're using LINQ to SQL. In that case, to turn off the pluralization (the "s" in the end), follow the instructions of the following article: How to: Turn Pluralization On and Off (O/R Designer) I hope this helps. Maíra
    Posted to ASP.NET Dynamic Data (Forum) by maira.wenzel on 8/25/2008
  • Re: Dynamic GridView without routing

    That's good to know! For people looking for examples, there is one with a FormView and EntityDataSource in the following location: http://msdn.microsoft.com/en-us/library/system.web.dynamicdata.dynamiccontrol.datafield.aspx I hope this helps, Maíra
    Posted to ASP.NET Dynamic Data (Forum) by maira.wenzel on 8/22/2008
  • Re: Can't Use DynamicFormView

    DynamicFormView was the control relased in the CTP last December, but this was removed from the current release. With the VS2008 SP1, you should use the normal FormView control with a DynamicDataManager and DynamicControls. For a sample, see http://msdn.microsoft.com/en-us/library/cc488554.aspx . I hope this helps. Maíra
    Posted to ASP.NET Dynamic Data (Forum) by maira.wenzel on 8/22/2008
  • Re: Ideas on making Table Readonly (-Edit, -Update actions)

    One idea is to create an additional page template (let's say ReadOnly.aspx) based on List.aspx that doesn't have any of edit/insert/delete functionalities and create an additional route like the following: routes.Add( new DynamicDataRoute( "Employees/{action}.aspx" ) { Action= "List" , ViewName= "ReadOnly" , Table = "Employees" , Model = model }); There might be something easier to do just with the routes. I hope this helps. Maíra
    Posted to ASP.NET Dynamic Data (Forum) by maira.wenzel on 8/18/2008
  • Re: Gridview paging issue getting the e.CommandArgument for the row index

    You can also set the CommandArgument as the following: < asp : LinkButton ID ="LinkButtonSelect" runat ="server" CausesValidation ="False" CommandName ="Select" CommandArgument =" <%# CType(Container,GridViewRow).RowIndex %> " Enabled =' <%# Eval("ShowSelect") %> ' Text ="<img src='../Images/SelectRecord.gif' alt='Select' border='0' />"></ asp : LinkButton > I hope this
    Posted to Data Presentation Controls (Forum) by maira.wenzel on 8/15/2008
  • Re: Getting started with Dynamic Data!

    [quote user="arefkarimi"] Sorry I checked out the entire discussion but did not find any post for newbies! I installed .net framework 3.5 SP1 but when I tried to create a new Dynamic Data project, I could not find such an option in "File -> New Web Site" or "File -> New Project". Do I have to install something else? [/quote] These options only appear if you chose Web Development settings.If you chose C# or general development for example, you'll have File
    Posted to ASP.NET Dynamic Data (Forum) by maira.wenzel on 7/30/2008
Page 1 of 12 (111 items) 1 2 3 4 5 Next > ... Last »