Search

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

Matching Posts

  • Re: GridView Caption

    well since you have the source code, its really not that difficult to add features and then post them as a suggestion. 1 //in the rendercontents method in the grid view adapter 2 //after the point where you are writing the open tag 3 //for the table put this in there 4 if (! string .IsNullOrEmpty(gridView.Caption)) 5 WriteCaption(writer, gridView.Caption); 1 // add this method somewhere else in the GridViewAdapter 2 // note this is no warranty that this will work 3 // as its untested code 4 5 6 private
    Posted to CSS Friendly Control Adapters (Forum) by vivus on 10/28/2006
  • Re: altas script reference bug.

    actually this is what i am doing. I'm basically making a compact framework that will work in conjuction with various controls that i have created or in the proccess of creating. I am using multiple small javascript libraries and have code built off of those base libraries that i need to use. However, I am making sure that this library can run with or without atlas. there is no need to load all the scripts on everypage. that is overkill. what i am doing is loading script references depending what
  • Re: HOW TO: Use ATLAS for callbacks and PROTOTYPE for effects

    actually you could just drop the $() function in the bottom of the page and you should be fine.
  • Re: Atlas causing javascript conflicts?

    < script type= "text/javascript" > /* < !CDATA[[ */ function sayHello() { for(var i=0; i < 5; i++) { alert("heya i should have used the firefox javascript console =)"); } } /* ]]> */ </ script >
  • Re: altas script reference bug.

    sorry, i probably have been rude, but, thank you for your time, i do appreciate you taking the time to answer these questions. i know you guys are probably extremely busy.
  • Re: altas script reference bug.

    so basically my only option at this point is to dump everything that is rendered on a partial update into something like clientscript.RegisterStartupScript. or make sure that everything is loaded during the inital rendering of that page.
  • Re: altas script reference bug.

    sorry, i was in a rush last night. Let me clarify on both of the issues. 1.) atlas ScriptManager & Custom Script References. lets say that you add a script reference during a postback/callback from atlas. and you also include a startup script which should fire after the references are added because you need some objects in the script to build off of inside of those references in the startup script and you have made sure those startup scripts are rendered after the xml-script. A good reason for
  • altas script reference bug.

    < script type= "text/xml-script" > < page xmlns:script= "http://schemas.microsoft.com/xml-script/2005" > < references > < add src= "../ScriptLibrary/Prototype/Debug/prototype.js" /> < add src= "../ScriptLibrary/DustinDiaz/Debug/sweetTitles.js" /> < add src= "../ScriptLibrary/Vivus/Debug/modal.js" /> </ references > < components > < pageRequestManager id= "_PageRequestManager" updatePanelIDs= "ctl00$bodyContent$upTransactions,ctl00$bodyContent$upCategories
  • Re: Javascript conflict with UpdatePanel

    it really should not matter where you inject the javascript as long as you are doing it correctly, i would check and make sure that your javascript is valid. (use something like the firefox javascript debugger/console). or create your own test harness
    Posted to ASP.NET AJAX UI (Forum) by vivus on 4/23/2006
  • Re: UpdatePanel and Javascript - Preload Images?

    try this < script type= "text\javascript" > var img = new Image(); img.src = "/images/header.jpg"; </ script >
    Posted to ASP.NET AJAX UI (Forum) by vivus on 4/22/2006
Page 1 of 1 (10 items)