i try to use the resize component of yui2.but i do not know why i cannot get the same result as the examples on yui.especially the appearance is not like the...
I know nothing about ASP.net, but if you add the handleSubmit: true to the config then you can assess the msgpost POST variable like any other form value.. Dav...
Ok, you should use setStyle to color it then, not adding or removing classes, that is the standard thing to do but it does not apply to you. getTdEl()...
Hi experts, I've created a YUI Editor with the following code taken from the Editor samples: <textarea name="msgpost" id="msgpost" cols="50" rows="10">...
Thanks Satyam. The challenge (customer requirement) I have is that I can not use CSS because all the color information in the application is custom configured...
This is not a good idea. If you set it like that, whenever the table is refreshed, such as when it is sorted or a row re-rendered, the color will be lost....
Looking over the DataTable API (http://developer.yahoo.com/yui/docs/YAHOO.widget.DataTable.html#method_getTdEl), I found a method called getTdEl (below): ...
That is usually some initialization code that fails under certain circumstances and the DataTable doesn't get fully initialized. For those mysterious errors,...
If you use getData without any arguments, it will give you an object literal representing the whole record. You can iterate over that, but remember it is just...
Hi, I have a weird issue with yui datatable. I generate a datatable with editable and non editable fields. -> Sometimes the whole datagrid renders non...
Or another way I can pose the question is - is there a Record method which iterates over each field/column. There is record.getData("column_name") which makes...
... The oRecord is not the row on the screen, there is no point on trying to set any attribute on it. elLiner is a reference to the HTML element that will...
I guess my question was poorly stated from the start. I am looking to see if I can format a color of a specific CELL in a column based on data in a different...
It should work with client-side pagination, it would not work with server side pagination as it can only delete what it has on the client side, you have to...
Satyam, Thanx for your link but  data delete only with first page not deleteing next page .I mean it does not work with pagination. Is there any clue? ...
For JSON, see: http://www.satyam.com.ar/yui/2.5.0/JSONsend.php ... For JSON, see: http://www.satyam.com.ar/yui/2.5.0/JSONsend.php El 07/01/2010 8:31, anilnamde...
Generally we use the connection manager to invoke the Ajax request and send the key value pairs using the request. However how can we form the Ajax request if...
Nope, you can assign only one formatter per column, which can do as many things required. Anyway, a single column is not supposed to have more than one field...
is it possible to use more than one formatter on a column? for example, the same column needs to be formatted dealing with colors and also dealing with dates? ...
You would then use a formatter on the column, not a generic row formatter: http://developer.yahoo.com/yui/datatable/#format Satyam ... You would then use a...
Hi Group, I'm fairly new to YUI and need to format a column from my row formatter. I looked into several YUI examples and could not find it. I want something...
Hi satyam, I am using checkbox in datatable. Is it possible to delete multiple row with single click? Deleting single row with single click is working. Anyone...
It is a recent change and it had a few bugs since some pieces of code that used 'key' were overlooked when dividing its duties between getKey and getField....
Wow, that was some great info right there. I've been taking pains to get everything to the top level in my JSON responses, now I won't have to - thanks! Best...
... In the same API you can see that the column has properties field and key and this methods reflect that, more or less. The properties of the Column are...
HI, I was wondering what the difference in the YUI DataTable API is between these 2 functions: 1. oColumn.getKey() 2. oColumn.getField() I did an alert of both...