Search

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

Matching Posts

  • Re: set focus on control inside repeater

    Randhawa - that would probably work except that I have several dynamic events created/fired between the ItemDataBound and when I need it to focus on a given textbox within the repeater control. When the ItemDataBound event is fired the repeater is loaded with the data and control is returned to the user. During the ItemCreated Event, I create an "onchange" event for one of the textboxes within the repeater control (using the following code). Dim tbox As TextBox = TryCast (e.Item.FindControl
  • set focus on control inside repeater

    I have a repeater control where I am setting some dynamic events (on change, click, etc.) on several controls in the repeater control. I cannot figure out how to set the focus on a specific control AFTER responding to the "onchange" events. I am currently trying the following code in the "onchange" event: Dim tboxw As TextBox = TryCast(sender, TextBox) Dim ri As RepeaterItem = TryCast(tboxw.NamingContainer, RepeaterItem) Dim tbox2 As TextBox = TryCast(ri.FindControl("txtPartName"
  • dynamic content with hovermenuextener

    I am using a hovermenuextender inside a repeater. The repeater control is inside an ajax tab control. I am able to place controls inside the panel control (of the hovermenuextender) if I place them at design time. However, I want to place dynamic content inside the panel based on the values of the other repeater controls. First - Is this possible ? If so - how do I accomplish this without affecting the repeater? Inside if the "I temDataBound" event of the repeater control- I have the following
    Posted to ASP.NET AJAX UI (Forum) by mark@markhembree.com on 11/20/2009
  • Re: Javascript works in IE - not in Firefox

    ok...I found the issue - I thank everyone for participating... Th actual issue came to be when I was trying to trap the error - i put an alert(); in thecode to follow the flow - IE will post a blank message - FF will not fire a blank message. I only THOUGHT FF was not executing... Once I figured that out, I was able to follow the flow to an issue where FF needed different object parameters than IE... Again - Thanks All
    Posted to Web Forms (Forum) by mark@markhembree.com on 11/14/2009
  • Javascript works in IE - not in Firefox

    I hope this is the right forum... I have the following script that works good in IE, but when I run it in FF - it doesnt work. I placed some alerts and found what steps it doesnt like, but I cannot see what the issue is. The basic idea is to take a selected item from dropdownlist8 and add it to listbox1. alert('aa'); gets displayed in FF but alert('bb'); does not get executed so -- document.getElementById('<%=Listbox1.ClientID%>').add(new Option(selectedStatus,selectedValue
    Posted to Web Forms (Forum) by mark@markhembree.com on 11/13/2009
  • Re: Javascript works in IE - not in Firefox

    The script works now is both IE and FF. However, when posting the page back (in FF - not IE), I get the following error: Invalid postback or callback argument. Event validation is enabled using <pages enableEventValidation="true"/> in configuration or <%@ Page EnableEventValidation="true" %> in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data
    Posted to Web Forms (Forum) by mark@markhembree.com on 11/13/2009
  • Re: Javascript works in IE - not in Firefox

    I appreciate yor help...I have another Javascript issue, but I need a day or so to isolae the issue again...mind if I shoot you an email or should I post another issue? thanks again...
    Posted to Web Forms (Forum) by mark@markhembree.com on 11/13/2009
  • Re: Javascript works in IE - not in Firefox

    here is another peice that doesnt work... when this page loads - the script initconstantcall never gets called in FF but works fine in IE... any ideas? Thanks... Mark <body style ="font-size: small; font-family: Verdana, Arial, Sans-Serif; background-color: ghostwhite;" onload ="javascript:InitConstantCall()" >
    Posted to Web Forms (Forum) by mark@markhembree.com on 11/13/2009
  • Re: Javascript works in IE - not in Firefox

    Thanks again...I am testing on FF 3.0 ... One thing that is different. I am actually loading the script within the vb.net code in the page load event. ' register the javascript into the Page Page.RegisterClientScriptBlock("update",Scpt) This places the script inside the body not inside the head tag of the html...does this matter..?
    Posted to Web Forms (Forum) by mark@markhembree.com on 11/13/2009
  • Re: Javascript works in IE - not in Firefox

    Thanks again...I am testing on FF 3.0 ... One thing that is different. I am actually loading the script within the vb.net code in the page load event. ' register the javascript into the Page Page.RegisterClientScriptBlock("update",Scpt) This places the script inside the body not inside the head tag of the html...does this matter..?
    Posted to Web Forms (Forum) by mark@markhembree.com on 11/13/2009
Page 1 of 6 (54 items) 1 2 3 4 5 Next > ... Last »