I have the following line: myDataTable = new YAHOO.widget.DataTable("myContainer", myColumnDefs, myDataSource, {sortedBy:{key:"cdate", dir:"desc"}}); But I...
17478
jq_cf
Aug 30, 2007 4:37 pm
Did you every get this figured out?...
17479
Satyam
satyamutsa
Aug 30, 2007 4:39 pm
One of the properties you can asign a column is the className. A certain element may have more than one class name so you don't need to redefine the classes...
17480
bobbobbobbobme
Aug 30, 2007 4:42 pm
Am I using an old version, or is this still an active bug? When unselecting multiple rows, not all are removed from the this._aSelections list because the...
17481
Satyam
satyamutsa
Aug 30, 2007 4:49 pm
The same issue came just yeasterday. The sortedBy notifies the DataTable how the data is already sorted, as it often is when coming from a database, it is not...
17482
Satyen Desai
sdezzi
Aug 30, 2007 4:55 pm
Hi, Calendar has a renderFooter method, which has an empty default implementation, but can be over-ridden to add content to the Calendar footer. e.g. ...
17483
Caridy PatiƱo Mayea
caridyp
Aug 30, 2007 5:09 pm
Hi Prasanna, Use a global unique ID for each tab: function addTab(title, text, guid) { if (!YAHOO.util.Dom.inDocument(guid)) { // do your stuff here... ..... ...
17484
Nick Fitzsimons
nickfitzs
Aug 30, 2007 5:14 pm
... should be Event.on(window,'load39;,checkInputs); // No () after "checkInputs" You want to pass a reference to the function; at present you are executing it,...
17485
Todd Kloots
toddkloots
Aug 30, 2007 5:28 pm
Alex - You'll need to place the script inside a CDATA block in order for it to validate: <script type="text/javascript"> <![CDATA[ <!-- YOUR JAVASCRIPT HERE...
17486
Todd Kloots
toddkloots
Aug 30, 2007 5:32 pm
Dave - Thanks for the email. We're aware of the JS error and this problem will be fixed in the upcoming 2.3.1 release of YUI. In the meantime you can use the...
17487
abshirf2
Aug 30, 2007 5:32 pm
Hello all, This is what i have so far: <?php //require_once("post2database.php"); ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" ...
17488
Carl Thompson
libraries411
Aug 30, 2007 5:36 pm
Hmmm ... didn't work ... is it because I also use ...? formatter:YAHOO.widget.DataTable.formatCurrency --and -- parser:YAHOO.util.DataSource.parseNumber...
17489
Todd Kloots
toddkloots
Aug 30, 2007 5:50 pm
Doug - Yes, to create a Top Nav from existing markup, you'd follow the markup strategy used in this Menu example: ...
17490
dav.glass@...
dav.glass
Aug 30, 2007 6:00 pm
abshirf2 -- Try changing this line: <form name="form1" method="post" action="post2database.php"> To this: <form name="form1" id="form1" method="post"...
17491
daniel
dep01chi
Aug 30, 2007 6:16 pm
Thanks! Extremely helpful. ... as it ... it. It is ... myColumnDefs. ... not that ... sorted,...
17492
Rush Manbert
RushManbert
Aug 30, 2007 6:20 pm
... Hi Chris, I checked this out. It's pretty cool, but when I looked at the page with Safari 2.0.4 on the Mac, the second row (Steps 1 and 2) columns are not ...
17493
abshirf2
Aug 30, 2007 6:28 pm
... Thanks for your reply Dav Glass. :) I made the change and it still doesn't add to the database. However, after making the change, the fields that use to be...
17494
abshirf2
Aug 30, 2007 6:36 pm
Your a genius Dav Glas! :) It works! It was a simple mistake i made, in a if function in m php! Thanks :<)...
17495
Rich
rrazony
Aug 30, 2007 6:48 pm
I could swear I'm following the YUI example for loading a DataTable with JSON over XHR to a tee. But I'm still getting a "oResponse has no properties" error. ...
17496
eneko.taberna
Aug 30, 2007 6:49 pm
Hi, Is there an easy way to dynamically hide and show datatable columns from script? It can be solved creating a new datatable with new column definitions and...
17497
damonnburns
Aug 30, 2007 6:54 pm
I am a new newbie I am looking to add the calendar widget to my website. I am trying to follow the instructions on the web but I am failing to follow them....
17498
Jason Lee
littlezoper
Aug 30, 2007 7:04 pm
Have you looked at the examples from the calendar page? That should give a nice, clean example to start from. ... -- Jason Lee, SCJP Software Architect --...
17499
Jeremy Coates
cocompltd
Aug 30, 2007 7:21 pm
Hi, Using handleSuccess as shown in the yui examples, I get an error: "missing ; before statement" in Firefox error console. var handleSuccess = function(o) { ...
17500
eneko.taberna
Aug 30, 2007 7:45 pm
have you revised the rest of your code? that function seems to be ok, so there could be a typo somewhere else. Can you post all the code please?...
17501
damonn burns
damonnburns
Aug 30, 2007 7:51 pm
Jason, Thanks for your response. I have looked at the examples but either they fail to explain how the fails should be entered into the text editor or I just...
17502
Caridy Patińo Mayea
caridyp
Aug 30, 2007 8:02 pm
Hi awa: Unfortunately, the YUI base.css touch all the visual controls of the YUI library (menu, tabview, etc), I hope the YUI's guys find out a solution for...
17503
Caridy PatiƱo Mayea
caridyp
Aug 30, 2007 8:13 pm
Hi Jeremy, Can you post an example to check it? Btw, in your code, the string in "response" will be executed twice in firefox, you may consider to use the...
17504
Satyam
satyamutsa
Aug 30, 2007 8:16 pm
Sorry, I replied from memory, but this is how I declared my style: .yui-dt-table tbody .euro { text-align:right; background: transparent url(euro.gif)...
17505
dcinteractive123
dcinteractiv...
Aug 30, 2007 8:18 pm
I am trying to get a simple HTTP get to work. I took the GET example and made slight modifications. No matter what I try, I cannot access the o.responseText...
17506
Satyam
satyamutsa
Aug 30, 2007 8:33 pm
The execution of the callback after calling asyncRequest is, as the name implies, asynchronous so immediately after calling it, the response has not arrived...