Search

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

Matching Posts

  • GridView RowIndex

    I have a gridview databound with a LINQ datasource. In each row I have another LINQ datasource and a formview which are bound bound to the parent ID of the gridview (Master/Details setup). Works great so far! In the formview I have a radiobuttonlist with two options "YES" and "NO". When no is selected it displays a panel with some text and a textbox in it for a user to ender details. Works fine when the formview is outside of the gridview. Question is how do I get the row index
    Posted to Data Presentation Controls (Forum) by b471code3 on 11/24/2009
  • Re: GridView RowIndex

    Not sure I know what you are talking about with the parent.parent casting. Do you have an example? Radiobuttonlist inside a formview and the formview is inside the gridview. <asp:GridView ID="GridView1" runat="server"> <Columns> <asp:TemplateField> <EditItemTemplate> <asp:FormView ID="FormView1" runat="server"> <EditItemTemplate> <asp:RadioButtonList ID="RadioButtonList1" runat="server"> <asp
    Posted to Data Presentation Controls (Forum) by b471code3 on 11/24/2009
  • Re: AsyncFileUpload inside FileUpload

    My whole project (40+ pages) uses master pages so no, I didn't put that in the master page when I posted it. I have tried it now and it seems to work just fine. The problem is, will it do anything to my other pages? I don't know what enctype is or does.
    Posted to ASP.NET AJAX Control Toolkit (Forum) by b471code3 on 11/11/2009
  • Re: Update TabPanel Header Text

    Oversight on my part MetalAsp.Net. I thought I glanced and saw a MVP image. I'm not too keen about MSFT being able to do those items and have actually generated quite a bit of feedback from other users who have had the same happen to them. Again, sorry and thanks for the help and feedback!
    Posted to Client Side Web Development (Forum) by b471code3 on 11/10/2009
  • Re: AsyncFileUpload inside FileUpload

    [quote user="obout_teo"] Add the following attributes to the <form> tag of your page: enctype="multipart/form-data" method="post" [/quote] I am using a master page will this make a difference? [quote user="obout_teo"] Use get_contentType(), not get_conte x tType(). [/quote] That was a typo on my end when typing in the forum. I am using contentType in my code. After the tests I am still unable to get any file types or sizes in my project. There is no documentation
    Posted to ASP.NET AJAX Control Toolkit (Forum) by b471code3 on 11/10/2009
  • Re: Update TabPanel Header Text

    [quote user="MetalAsp.Net"] By the way, if you want to set the header on a specific tab, via the tab's ID, you can use: view plain copy to clipboard print ? $find( '<%= tab2.ClientID %>' ).set_headerText( '456' ); // Where tab2 is the ID of your second tabpanel. I'm not sure I have an answer for you. You might so this on the GridView's DataBound event, where you can get at the total number of row there. Then you might use ClientScript.RegisterStartupScript
    Posted to Client Side Web Development (Forum) by b471code3 on 11/4/2009
  • Re: AsyncFileUpload inside FileUpload

    [quote user="obout_teo"] Download the latest Change Set here: http://ajaxcontroltoolkit.codeplex.com/SourceControl/ListDownloadableCommits.aspx . If you apply this Change Set, you can use the following function to check file extension: [/quote] This doesn't really help with checking the context type. I don't want to check the extension because it can be easily changed whereas the context type cannot. Still doesn't answer why args.get_length() and args.get_contextType() return
    Posted to ASP.NET AJAX Control Toolkit (Forum) by b471code3 on 11/3/2009
  • Re: AsyncFileUpload inside FileUpload

    [quote user="obout_teo"] You can download it here: http://ajax.obout.com/temp/AtlasControlToolkit_bin.zip . [/quote] Thanks for the file! Upon downloading the file, I noticed some differences. The file you provided is an older version than the one release in early October. It has file version of 3.0.30512.0 and a file size of 2.03 MB whereas the one released in early October has a version of 3.0.30930.0 and a file size of 3.96 MB. Are there items missing from the version you have supplied
    Posted to ASP.NET AJAX Control Toolkit (Forum) by b471code3 on 11/3/2009
  • Re: Update TabPanel Header Text

    Any other thoughts on this?
    Posted to Client Side Web Development (Forum) by b471code3 on 11/2/2009
  • Re: AsyncFileUpload inside FileUpload

    Ok that helps. Looking now for some help with my js function. Every time I run this function I get a NaN for the fileLength and a "" for the contentType. function uploadComplete(sender,args) { var fileSize = args.get_length(); // returns NaN var contentType = args.get_contentType(); // returns "" var types = "text/html,text/plain,image/gif,image/x-xbitmap,image/x-xpixmap,image/x-png,image/jpeg,image/tiff,application/rtf,application/pdf,application/x-pdf,application/msword
    Posted to ASP.NET AJAX Control Toolkit (Forum) by b471code3 on 11/2/2009
Page 1 of 105 (1045 items) 1 2 3 4 5 Next > ... Last »