Hi, Pagination is working but How can I delete a row and dynamicaly update the data var myColumnDefs = [ // sortable:true enables sorting ...
51960
nagaraj
manne_swiss
Oct 23, 2009 2:31 pm
The problem where I am facing is when I drag first row over the other row its show that its swapping correctly but when I try to see the values they are not...
51961
Satyam
satyamutsa
Oct 23, 2009 5:50 pm
The first few paragraphs in this article: http://yuiblog.com/blog/2008/10/27/datatable-260-part-two/ deal with your question. I would like to add that putting...
51962
Janine
janinedog
Oct 23, 2009 9:02 pm
I've been trying to implement the row expansion example, located here: http://developer.yahoo.com/yui/examples/datatable/dt_rowexp_basic.html After much trial...
51963
juliebonniedaisy
juliebonnied...
Oct 23, 2009 9:26 pm
It is supposed to be 2/3 - 1/3 inside the 2/3, divided into 3 inside the 1/3, divided into 2/3 - 1/3 Thanks ! <div id="doc2"> <div id="bd"> <div...
51964
George Papaioannou
sdancer75
Oct 24, 2009 7:39 am
Hi, Satyam, do you have any good idea of how to do this ? Regards, ... Áðü: Matt <matt@...> ÈÝìá: [ydn-javascript] Re: DataTable Editor...
51965
Satyam
satyamutsa
Oct 24, 2009 3:52 pm
I guess I'll have to figure out something, there is too many people asking for this. See: http://www.satyam.com.ar/yui/2.7.0/keynav.html It is just a first...
51966
Matthew Taylor
mattspratt
Oct 25, 2009 3:40 pm
Dave or whoever knows ;), Is there a way to disable all or some keyboard shortcuts for the SimpleEditor or Editor? The Alt-Z shortcut is apparently causing...
51967
Dav Glass
dav.glass
Oct 25, 2009 7:42 pm
Alt + Z is not used in the Editor. Can you give me a repro case? Dav ... -- Dav Glass davglass@... blog.davglass.com + Windows: n. - The most successful...
51968
morekaos
all4onen2x4
Oct 25, 2009 11:40 pm
The solution below didn't look right, kind of hokey, and at the end of the day, I could not get this to work. I searched high and low for the real solution....
51969
morekaos
all4onen2x4
Oct 25, 2009 11:40 pm
I don't know if there is a specific variable in YUI Charts that accesses the %, however this is how I did it. This should give you an idea, I took out other...
51970
Shiva C
shivan_buzz
Oct 26, 2009 12:35 am
Hi , Can someone let me know how to make Synchronous call using YUI connection. Thanks Siva...
51971
Archana K
archana_k44
Oct 26, 2009 6:03 am
Free Online College Study ACCA 100% Online Get 100% Funded MBA! InterActive+ACCA+MBA+Top Tutors http://highereducationdegree-magha.blogspot.com Migration &...
51972
nagaraj
manne_swiss
Oct 26, 2009 6:42 am
Here is the link of the code that i am writing for drag and drop of rows with in a datatable (which is same as per ...
51973
bahalul kabir
bahar_aub
Oct 26, 2009 10:16 am
Thanx satyam.Its working ________________________________ From: Satyam <satyam@...> To: ydn-javascript@yahoogroups.com Sent: Fri, October 23, 2009...
51974
juliebonniedaisy
juliebonnied...
Oct 26, 2009 11:43 am
i did both a regular search and also an advanced search by subject and it did not find this post. ...
51975
bahalul kabir
bahar_aub
Oct 27, 2009 7:42 am
How can I have selected? for example selected hold. {key:"assign", formatter:"dropdown", dropdownOptions:["open","hold","closed"],sortable:true}, Thank you ...
51976
George Papaioannou
sdancer75
Oct 27, 2009 8:00 am
Thank you Satyam, it worked without problems to me. The only situation I have is with my custom drop down menus insde the table (the one that the content are...
51977
Tim
tocb2003
Oct 27, 2009 10:33 am
Hi, I'm trying to merge the code editor example into the dialog example of the RTE 2.7.0b Should this be possible to do ? At the moment after my cut and paste...
51978
Satyam
satyamutsa
Oct 27, 2009 10:44 am
The dropdown will reflect the value contained in the field. If there is no such value coming from the source then you have to either fill it before the table...
51979
bahalul kabir
bahar_aub
Oct 27, 2009 1:13 pm
Hi satyam, I wrote my own formatter but dropdownChangeEvent does not call. YAHOO.widget.DataTable.dropdown = function(elLiner, oRecord, oColumn, oData)...
51980
Satyam
satyamutsa
Oct 27, 2009 6:00 pm
The code you show below should not work at all, but I guess you copied it loosely, it really should produce so many errors and warnings that whether the event...
51981
juliebonniedaisy
juliebonnied...
Oct 27, 2009 6:20 pm
bump ?...
51985
Matt
mattatlamplight
Oct 28, 2009 10:16 am
Hi, Hard to say without code - if you can post a snippet somewhere it's easier to tell. Looking briefly at the examples I wonder if it's either Dom is not...
51986
Shanthimsc
shanthivarshu
Oct 28, 2009 11:57 am
Hai All, I have used YUI tabs in my web page. I want to refresh the page while clicking the tab so that I can get the dynamic content for the tabs. For this, i...
51987
Satyam
satyamutsa
Oct 28, 2009 1:09 pm
Your link produces a 404 page fault error...
51988
Satyam
satyamutsa
Oct 28, 2009 1:13 pm
Due to the hierarchy of classNames that encompasses a datatable, it is often the case that the priorities of one style supersedes yours. See: ...
51989
juliebonniedaisy
juliebonnied...
Oct 28, 2009 3:29 pm
I am unable to get cellClickEvent to fire in IE7 or 8 but it works fine in Firefox. Any ideas please? sDataTable.subscribe('cellClickEvent', alert("hi");); ...
51990
Christian Tiberg
ctiberg
Oct 28, 2009 3:40 pm
I usually do something like this: sDataTable.subscribe('cellClickEvent', function() { alert("hi") };); It seems like it works better if there's an actual...
51991
Satyam
satyamutsa
Oct 28, 2009 3:40 pm
The second argument has to be a function, not an expression. sDataTable.subscribe('cellClickEvent', function () {alert("hi");});...