Search

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

Matching Posts

  • CalendarBehavior.js bug

    There is a new bug in the CalendarBehavior js introduced by parameter checking. Inside _updateCalendar, the following line breaks: $common.addCssClass(dayCell, this ._getCssClass(dayCell.date, 'd' )); because _getCssClass sometimes returns null and addCssClass expects a string. The work around is to replace null by empty string: var dayClass = this ._getCssClass(dayCell.date, 'd' ); if (dayClass == null ) dayClass = '' ; //$common.addCssClass(dayCell, this._getCssClass(dayCell.date, 'd')); $common
    Posted to ASP.NET AJAX Control Toolkit (Forum) by uri on 11/27/2006
  • Re: How to set initial value for Slider?

    With the latest toolkit, the slider works as expected, unless it is cointained inside a TabPanel... (but that is a different bug) If I take the slider out the TabPanel, I am able to initialize it just fine by code or during design time
    Posted to ASP.NET AJAX Control Toolkit (Forum) by uri on 11/27/2006
  • Controls cointained in TabPanel do not initialize correctly

    I tried a Slider inside a TabPanel and setting the initial value for the Textbox doesn't work. (Slider1.Text = "5") but if I take the slider outside the TabPanel, then it works. Similar problem with MutualExclusiveCheckboxes. I know the TabPanel is not yet released, but I like to raise the issue. I suspect the problem has to do with the way the cointained control's name is changed to include the Panel's name: ctl00_cph1 _Tabs_Panel1_ Slider1
    Posted to ASP.NET AJAX Control Toolkit (Forum) by uri on 11/23/2006
  • Re: MutuallyExclusiveCheckBoxExtender doesn't work if elements are added dynamically

    The problem ONLY exists if the MutuallyExclusiveCheckBoxExtender is cointeined inside a TabPanel. The IDs get changed by the cointeiner control and the jscript fails to find them.
    Posted to ASP.NET AJAX Control Toolkit (Forum) by uri on 11/23/2006
  • How to set initial value for Slider?

    The slider always starts in ZERO... how can I get the pointer to start in a different position? I tried to set the Slider1.Text = "55"; < asp:TextBox ID= "Slider1" runat= "server" AutoPostBack= "true" Style= "right: 0px;" >55</ asp:TextBox > < asp:Label ID= "Slider1_BoundControl" runat= "server" ></ asp:Label > < ajaxToolkit:SliderExtender ID= "SliderExtender1" runat= "server" BehaviorID= "Slider1" TargetControlID= "Slider1" BoundControlID= "Slider1_BoundControl" Orientation
    Posted to ASP.NET AJAX Control Toolkit (Forum) by uri on 11/23/2006
  • Re: 'Sys' is undefined.

    Actually what fix my problem was well documented... but I hope next Ajax release, the team includes these lines in the project template because it is very easy to overlook them. In my case I had to add manually the following <BOLD> lines to the web.config in order to run WebServices: 1 < httpHandlers > 2 < remove path= "*.asmx" verb= "*" /> 3 < add path= "*.asmx" verb= "*" type= "Microsoft.Web.Script.Services.ScriptHandlerFactory, Microsoft.Web.Extensions, Version=1.0.61025.0
  • MutuallyExclusiveCheckBoxExtender doesn't work if elements are added dynamically

    I create my table on the fly and added checkboxes as well as MECBextenders. The client script is not working on the page. It works as expected if the MECBs are added during design time. Here is some code to demonstrate population: 1 string extenderKey = "AllTheSameKey" ; 2 3 foreach (MvpPoint point in _selected.FolderPoints) 4 { 5 6 7 8 switch (point.PointType) 9 { 10 case tPointType.DO: 11 case tPointType.CP: 12 { 13 continue ; 14 } 15 default : 16 { 17 trow = new TableRow(); 18 19 CheckBox chkSelected
    Posted to ASP.NET AJAX Control Toolkit (Forum) by uri on 11/9/2006
    Filed under: MutuallyExclusiveCheckBoxExtender
  • Re: A gift to you all: An Atlas client-side tabstrip

    I did the following modifications to the code: 1) took out the closures and followed added prototype members. 2) remove the TypeDescriptor and getDescriptor functions. 3) In the xml-script added the reference... but it is still not working. I am posting the modified broken code, hopefull the community can fix it again to the new Ajax 1.0 _________________________________ Type.registerNamespace( 'Dice' ); // Tabset view Dice.Tabset = function (element) { // Ctor creates private fields and calls base
    Posted to Tips & Tricks (Forum) by Uri on 11/6/2006
    Filed under: Ajax xml-script Tabstrip
  • <application load="onLoad"></application> does not work with Ajax 1.0 Beta

    This used to work with previous releases: <script type="text/javascript"> <!-- function onLoad() { // Execute your code here. } //--> </script> <script type="text/xml-script"> <page> <components> <application load="onLoad" /> </components> </page> </script> Now the function onLoad never gets called. I need to initiate a WebService call from th Javascript page on load... therfore I cannot use the pageLoad() javascript function
    Posted to ASP.NET AJAX UI (Forum) by Uri on 11/3/2006
  • Re: A gift to you all: An Atlas client-side tabstrip

    I tried your example in the latest AJAX V1.0 Beta and the code returns the following Javascript error: Sys. TypeDescriptor is null or not an object
    Posted to Tips & Tricks (Forum) by Uri on 11/3/2006
Page 1 of 2 (13 items) 1 2 Next >