Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

ydn-javascript · Yahoo! User Interface Library Group

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 12954
  • Category: JavaScript
  • Founded: Dec 15, 2005
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 50821 - 50852 of 52481   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
50821 Dave Howorth
dhoworth.mrclmb Send Email
Jul 27, 2009
11:11 am
... I did some digging and learned some depressing facts. More than I wanted to know about Javascript and keyboards. I now know that the keyboard model in...
50822 jamie.young Send Email Jul 27, 2009
12:59 pm
If I understand you correctly, I have that covered here: YAHOO.util.Connect.asyncRequest('POST&#39;, 'update&#39;, { success: function (o) { var r =...
50823 the1whowon Send Email Jul 27, 2009
1:37 pm
1. Is it possible to only override the browser text formatting and nothing else? 2. or is there a way to add all the formatting again for the body tags etc as...
50824 Satyam
satyamutsa Send Email
Jul 27, 2009
1:43 pm
There are two ways you can do it. You can change the markup from this: <li><div>1 <a href=./get.cgi?1 target="report">Chapter 1</a></div> to this: <li><a...
50825 Satyam
satyamutsa Send Email
Jul 27, 2009
3:13 pm
That is the one, sorry, you already had it there, I saw the other call to callback() with no arguments a few lines below and didn't see this one. Does r.data...
50826 Ricardo O Maciel
ricardo_o_ma... Send Email
Jul 27, 2009
3:59 pm
How can I control the indentation of the menu items (labels) to set them closer to the left edge of the menu background? I have tried a number of CSS padding...
50827 dennisrmccarthy Send Email Jul 27, 2009
5:06 pm
I searched for information on how to develop a custom YUI control/widget, and found an article and a presentation: * "Custom YUI Widgets" -...
50828 jamie.young Send Email Jul 27, 2009
5:52 pm
That was what I was missing, I didn't realize that the data needed to be parsed there as well. Thanks!...
50829 Eric Miraglia
ericmiraglia Send Email
Jul 27, 2009
6:11 pm
Dennis, Satyam's article (the second one you reference) details the approach we use in building widgets for YUI 2.x. That's the best place to start. From a...
50830 Janine
janinedog Send Email
Jul 27, 2009
7:51 pm
That totally worked! Thanks so much for your help...I'm glad it was so simple to fix. :) Janine...
50832 markedwardhaase Send Email Jul 28, 2009
3:49 am
Have you tried adding "! important" to your CSS style for the autocomplete?? I had problems skinning the YUI tooltip, and this trick helped me fix it....
50834 vsailas Send Email Jul 28, 2009
11:37 am
Thank you very much Satyam, the copy from githhub was helpful, it solved my problem. -- Sailas...
50835 sdancer75 Send Email Jul 28, 2009
3:14 pm
Is that possible to access the datatable from JScript code inside an iframe ? Regards,...
50836 rgbastro Send Email Jul 28, 2009
3:42 pm
Internet Explorer 8 gives me an error with YUI's styleshhet-min.js. The error is a typical "Object expected": Object expected stylesheet-min.js, line 7...
50837 Dav Glass
dav.glass Send Email
Jul 28, 2009
5:44 pm
First thing is try to use the stylesheet-debug.js file, that will give you a more reasonable error message. Second, make sure your code passes JSLint: ...
50838 lisa3711 Send Email Jul 28, 2009
6:36 pm
I am implementing Yahoo API... see example: http://www.libraries.uc.edu/information2/hours_maps/index.html And get the above error. Can anyone help or point to...
50839 Dav Glass
dav.glass Send Email
Jul 28, 2009
6:54 pm
Change this: <script type="text/javascript" src="/mainul/09/scripts/YUI/build/yahoo/yahoo-min.js" ></script> <script type="text/javascript"...
50840 lisa3711 Send Email Jul 28, 2009
6:58 pm
Thanks, I thought I had things mixed, but wasnt sure where to look!...
50841 fernandogaleano84
fernandogale... Send Email
Jul 28, 2009
7:14 pm
Hi All. I have the following problem: After the user gets the search results for AutoComplete, if they happen to not select any item and click outside the...
50842 Eric Miraglia
ericmiraglia Send Email
Jul 28, 2009
7:17 pm
Lisa, The problem you're seeing is related to having your YUI dependencies in the wrong order. Instead of: <script type="text/javascript"...
50843 inna_work Send Email Jul 28, 2009
7:27 pm
Hello, I have a fairly basic Datatable with remote JSON data. One of the cells with a custom formatter is having a problem rendering in IE. What I have: -most...
50844 rgbastro Send Email Jul 28, 2009
10:02 pm
... Thanks Dav, The debug file yields the 'object expected' error in line 195 character 17 of the debug file: if (cssRules[sel]) { cssRules[sel].style.cssText...
50845 rgbastro Send Email Jul 28, 2009
10:15 pm
Forgot to mention a couple important details: 1) The code works just fine in FF 3.5.1 and the latest Opera 9. 2) The 'commonsheet&#39; style sheet comes through a...
50846 jwpebcakerror Send Email Jul 28, 2009
11:15 pm
I've got something weird going on with the carousel. Its built from source but a bunch of LIs are being dynamically added and as it AutoPlays more continue to...
50847 theblargoner Send Email Jul 29, 2009
12:13 am
The click() method is only intended to be used on certain <input> elements, see e.g. https://developer.mozilla.org/en/DOM/element.click Unfortunately it is not...
50848 htnhat@...
htnhat Send Email
Jul 29, 2009
4:55 am
Hellow Everybody, I would like to ask that there are any ways to exclude one column in sort operation happening in a Datatable? I have a Datatable with 8...
50849 Satyam
satyamutsa Send Email
Jul 29, 2009
7:06 am
The use of iframes is troublesome, some people had success with it, but it is tough and I wouldn't recommend it, there is little you can do with iframes that...
50850 Satyam
satyamutsa Send Email
Jul 29, 2009
7:12 am
Try creating a text node with ' &#39; Sometime plain whitespace gets ignored so it won't have a height or width.   won't be ignored. Also, avoid setting...
50851 George Papaioannou
sdancer75 Send Email
Jul 29, 2009
7:17 am
Dear Satyam, Thank you for your reply. I just need to scroll vertically a datatable (that's the thought to use iframe) that has a big height while the other...
50852 Satyam
satyamutsa Send Email
Jul 29, 2009
7:33 am
I guess that you could assign the line number a formatter that ignores the value in the Record object and simply puts the number there based on the page number...
Messages 50821 - 50852 of 52481   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help