Questions tagged [yui]

A set of utilities and controls, created by Yahoo in JavaScript and CSS, for building richly interactive web applications using techniques such as DOM scripting, DHTML and AJAX

The YUI (Yahoo! User Interface) library provides tools for professional web development, including a rich JavaScript and CSS library -- all freely available under a liberal BSD license.

Active development of YUI was discontinued by Yahoo! on August 29th, 2014, based on the following:

Most core YUI modules do not have active maintainers, relying instead on a slow stream of occasional patches from external contributors. Few reviewers still have the time to ensure that the patches submitted are reviewed quickly and thoroughly.

Therefore, we have made the difficult decision to immediately stop all new development on YUI in order to focus our efforts on this new technology landscape. This means that, going forward, new YUI releases will likely be few and far between, and will only contain targeted fixes that are absolutely critical to Yahoo properties.


Documentation :


Related tags :

1782 questions
0
votes
1 answer

Accessing variables across different scopes in Javascript & YUI 3

I'm new to YUI 3 and YUI in general. I'm trying to pass data between classes and methods. In this example I'm using the gallery-sm-treeview plugin to build a file tree. There's a class named TreeView to initialize and render the tree. There's…
frhd
  • 9,396
  • 5
  • 24
  • 41
0
votes
1 answer

YUI Calendar: get current page / pageChangedEvent

I am working on an application which works with GPS data. Part of the application is a calendar which displays dates for which data is available for a particular device. We then use the YUI Calendar to display this visually. The call to our server…
david
  • 691
  • 1
  • 4
  • 14
0
votes
1 answer

Trigger YUI onDOMReady programatically after comepletion of turbolinks page:load event

I am trying to implement turbolinks in my rails app, its an old app which has pretty huge codebase. We use YUI and Jquery in our app. Now after integrating turbolinks in the app, the Dom ready event would not be triggered as per the turbolinks…
Ross
  • 1,562
  • 1
  • 15
  • 26
0
votes
1 answer

Is using the YUI Compressor on JSON files worth the trouble?

I use some rather large JSON files (really, only several hundred "records"). Is compressing said files (using the YUI Compressor) worth the hassle/time? I get the files via $.getJSON()
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862
0
votes
1 answer

YUI 3 Tabview access

I've created a tabview by this way: var tabview; var Y = YUI({ insertBefore: 'my_css' }); Y.use('tabview', function (Y) { tabview = new Y.TabView({ children: [{ label: 'Suche', content: "
" }, { …
Chris
  • 234
  • 1
  • 11
0
votes
2 answers

Not able to run upload.php using YUI Uploader

I'm trying to get YUI uploader work on my computer / localhost, by using this example . The javascript the page use, can be view here. The upload button has the following handler: YUE.on('upload', 'click', this.upload, null, this); (...) upload :…
Steven
  • 19,224
  • 47
  • 152
  • 257
0
votes
1 answer

Avoid duplicate JavaScript in YUI3

I created three widgets that are added to YUI as modules. All widgets use the same javascript library (commons.js) using the Y.Get.js method. These widgets are defined in separate js files (I need to do it so that these widgets are standalone). All…
0
votes
2 answers

YUI2 datatable inside tab

I have a datatable configured as below function handleTabChange(e){ var errDataSource = new YAHOO.util.DataSource("/webapp/somecontroller"); errDataSource.responseType = YAHOO.util.DataSource.TYPE_JSON; errDataSource.responseSchema = {…
sreeprasad
  • 3,242
  • 3
  • 27
  • 33
0
votes
1 answer

Why my YUI 2 server side pagination, Datasouce is not called on every click of pagination link

My code looks like below. I am feching the json records from the server side using structs action. it is returning the records fine and i could able to see the table with data. pagination links created fine. when i click next and datasource is…
user562811
  • 81
  • 1
  • 1
  • 4
0
votes
2 answers

Add Class to all table rows with any 2 classes and another style to all table rows with any 3 classes

Another YUI3 question. I want to add a class(.two) to all table rows with 2 classes and another class(.three) to all table rows with 3 classes. I found this piece JQuery of code from another question on here, I suspect this will work, but need to…
user1525612
  • 1,864
  • 1
  • 21
  • 33
0
votes
1 answer

Make table rows sortable with YUI

Currently I have a table similar to below:
Example TitleTitle2
data1data2
I am using…
Mike Valstar
  • 3,499
  • 5
  • 24
  • 32
0
votes
1 answer

Get the title of an and apply it to it's parent

I have the following HTML:
I would like to get the title of all images ("My image") in this case, and add this title on to the parent , so that the above example would look like…
user1525612
  • 1,864
  • 1
  • 21
  • 33
0
votes
1 answer

Add class to parent of with certain class name or certain source

My HTML looks like this, and I'm working with the YUI library:
I would like to know how to (1) add a class to the container off all…
user1525612
  • 1,864
  • 1
  • 21
  • 33
0
votes
1 answer

Yahoo UI the popup implementation with YAHOO.widget.Dialog

I used the Yahoo.widget.dialog to implement a popup window. Currently, it popups only on the page which is belongs. If I am working on the other (tab browser) pages. The popup window will be not seen.Could somebody supply some help for this ?Thanks
Smith
  • 1
  • 1
0
votes
1 answer

How can I send foreign characters with YUI io (XMLHttpRequest)

I'm using YUI io to post data to my server. I have some problems sending foreign characters like æ ø å. First case: a form is posted to the server Y.io(url, { method: 'POST', form: { id: 'myform', useDisabled: true …
1 2 3
99
100