yui

Problem in YUI:I am using YUI grid..my dataset contains some special chareter.but its not displayed inm my grid?

Problem in YUI:I am using YUI grid..my dataset contains some special chareter.but its not displayed inm my grid? ...

YUI vs jQuery, for css style layouts

Hi Complete novice question. I've used jQuery a bit, YUI not at all and know very little about it. I work on a website thats IE specific, we're now looking at making it cross browser. jQuery seems great at hiding the differences between browsers from a javascript point of view. However in terms of css layout is it YUI that I should...

What's this UI pattern called?

I'm trying to figure out what this sort of thing is called, and eventually how I can create one in a web browser. It looks like this (screenshot of the first app that came to mind): The specific component/pattern I'm looking for is the two list boxes ("Included Gear" and "Excluded Gear") that represent inclusion/exclusion of items fro...

Problem in YUI:I am using YUI grid,my dataset contains some special character.i bind my dataset into grid,but its not displayed in my grid?

Problem in YUI:I am using YUI grid,my dataset contains some special character.i bind my dataset into the grid,but its not displayed in my grid? how to solve this ...

YUI DataTable custom sortFunction issue

I am using a YUI DataTable with a custom sortFunction that strips out HTML code, to sort based on the text content only, rather than the entire string with HTML tags. The problem that I am having is that I need to make use of this sort function on three different columns, and I can not seem to pass the "field" value into my sort function...

When will official widgets for YUI 3 come?

I don't just understand their logic. The YUI site says that the full suite of widgets and utilities for YUI 3 will come in 2010. But they've not released it yet. What do you think? Should I wait or go in for something like jQuery UI. And, yes, I don't want to use YUI 2... ...

Can YUIs DataTable do inline cell editing with auto completion?

I'm trying to get YUIs DataTable to work using Inline Cell Editing that can Auto Complete. In this thread: http://yuilibrary.com/projects/yui2/ticket/2528064 Somebody provides a non-working solution, that seems close. Has anybody tried to get this to work? ...

Create Custom values for the cells in the YUI datable or gui: dataTable

Hi i would like to know how to create custom values for the dataTable. For example I want to do some calculations for the values that will be placed in the dataTable. But what happens is that I get an error: ERROR errors.GrailsExceptionResolver - Executing action [dataTableJSON] of controller [com.MeetingController] caused exception: ...

Using YUI with Spring framework

hey guys i am new to ajax technology and i want to use YUI technology with spring framework so please guide me where to start;useful links & tutorials thank you. ...

Using YUI, how do I assemble the request using a RecordSet and submit a form to the server?

Could you please provide me a simple example for assembling the request and sending to the server using the RecordSet? If someone knows how,please post it here. Also how do I handle the form post-back, any ideas? Thanks!! ...

How do I control when the Undo button is clickable in a Rich Text Editor using YUI?

Right now I have a page with 2 tabs. When the EDIT tab is clicked a YUI rich text editor will load up and create the toolbar and textarea to edit. I then will do a RESTful GET call to retrieve the data and then set it to the textarea value. This causes the Undo button to be clickable since the value was originally empty and then text was...

Exception thrown in YUI: "Sizzle" is not defined!

Hi, We are using HTML Unit v2.6 with Web-Harvest and extended its functionality to create a new element <web session="sess1" browser="firefox2"> <web-getpage url="https://www.linkedin.com/secure/login"/&gt; <web-setinput name="uname">username</web-setinput> <web-setinput name="pwd">password</web-setinput> <web-clickinput name="login"/...

Can YUIs DataTable have resizeable but not moveable columns?

I have implemented column resizing with YUIs DataTable as demonstrated in this example: http://developer.yahoo.com/yui/examples/datatable/dt_complex_clean.html Is there anyway to enable column resizing without column moving? ...

why is link generated in YUI javascript failing to render in rails?

Using YAHOO.widget.treeview to generate a table with three levels of data: module, submodule, and detail. If there is an image associated with a detail row the javascript generates a link: "<td><a href=\"/screenshot/show/" + rowData.id + "\">Screenshot</a></td>" that is appended to the html for the row. The url is generated correct...

How to cache YUI DataSource?

I'm setting up a YUI DataTable with filtering by following the steps on the YUI site However, I am using JSON as the DataSource ResponseType. When I type in a value to filter, the request will be sent to the server again. I find this to be wasteful as all the data has already been retrieved the first time. Is there a way to cache the...

grails yui richEditor and the div _firebugConsole : Why it appears in my richEditor ?

I use the richEdit yui component to my grails application. I added a constraints size:1..1000 on my grails domain class. But when I save the content of the richEditor, no validation message is rendered if the richEditor is blank. The richEditor contains automatically the message : (I use the extension firebug). How can I avoid it ...

Can't get YUI animations to wait until the first has finished

Hi there, I have 3 animations that run when I load my page. A header descends from the top and a footer ascends from the bottom. Also, my main logo goes from fully transparent to fully opaque. I'm using the YUI framework for the animations. My problem is that they all happen at the same time. I'd like the header & footer animations to...

YUI getElementById('id').value deprecated??

Hello, My IDE complains the usage of value like in the below YUI statement is deprecated.. it works, still, what is the proper usage. var idValue= document.getElementById('id').value; thanks.. Babu ...

YUI AutoComplete: how do you get it to expand when the input is selected?

I've got a YUI AutoComplete control, works great. Except that I'd like it to expand the list of suggestions as soon as the user selects the input box. How do I make that happen? Right now expansion doesn't happen until the user hits a key in the box. ...

Is it possible to do live events in YUI, similar to jQuery's live events?

It doesn't currently seem as though there is a way to do live events in YUI similar to jQuery: http://api.jquery.com/live/ It sure would be nice if something like: function handleClick(e) { // click! } YUI().use('node-base', function(Y) { Y.on("click", handleClick, ".foo"); }); caused handleClick to be fired when a node with...