Search Type: Posts; User: devol
Search: Search took 0.02 seconds.
-
18 Oct 2006 1:51 PM
Jump to post Thread: grid addRows performance by devol
- Replies
- 4
- Views
- 3,430
The bottleneck for me was the column resizing support. Do you need resiziable columns? I think Jack is working on a speedup that turns that off.
-
16 Oct 2006 8:04 PM
- Replies
- 3
- Views
- 2,860
I assume this is why the new version was uploaded :)
-
16 Oct 2006 4:30 PM
- Replies
- 3
- Views
- 2,860
Found it:
YAHOO.ext.util.Config = {
apply : function(obj, config){
console.log(config);
if(config){
for(var prop in config){
if(typeof config[prop]... -
16 Oct 2006 4:19 PM
- Replies
- 3
- Views
- 2,860
I've got my toolbar appearing and styled. When I hover over a button the style changes to ytb-button-over, but when I click nothing happens. If I set a mouseover handler same thing. I've tried a...
-
13 Oct 2006 9:37 PM
- Replies
- 18
- Views
- 6,513
Animal I tried making that code work and I can't even get it to add a class in Firefox, much less Safari. Maybe I'm setting things up wrong, I'll post up a sample page tomorrow.
-
12 Oct 2006 3:22 PM
- Replies
- 10
- Views
- 6,678
Thats what this other grid used. Ugh.
I wonder if this is possible:
Set the styles before generating the html. Don't allow the width to change. (with a flag like noResize or something). -
12 Oct 2006 2:00 PM
- Replies
- 10
- Views
- 6,678
Slowest part of the loop in there is this:
this.setCSSWidth(i, width, pos);
About a .130 seconds each loop. Everything else in the loop is super quick.
Narrowed down further to: -
12 Oct 2006 1:26 PM
- Replies
- 10
- Views
- 6,678
It is. Ok. Continuing with your instructions.
-
12 Oct 2006 1:17 PM
- Replies
- 10
- Views
- 6,678
The archive I have doesn't contain those files...
And that would be because somehow I managed to download an old release! Ack! Lets see if the original problem is still there... -
12 Oct 2006 12:31 PM
- Replies
- 10
- Views
- 6,678
To use the "source" version of the library, is there a specific order you need to include the JS files in? I'm on a mac here and can't use your JS tool to build a new file each time. I've tried...
-
12 Oct 2006 11:11 AM
- Replies
- 10
- Views
- 6,678
Once the page is rendered scrolling proceeds just find. Its just the initial render that is so slow. I'd be willing to disable column resizing for the speed improvement. Unforunately this app needs...
-
12 Oct 2006 9:30 AM
- Replies
- 10
- Views
- 6,678
With 101 columns the grid is very slow to render, and very slow to resize an individual column. Once rendered though, scrolling is perfectly smooth and fast. I even get unresponsive script warnings...
-
12 Oct 2006 7:18 AM
- Replies
- 18
- Views
- 6,513
FYI. The grid is REALLY slow to render with 100 columns. Once its rendered its quick, unless you want to resize a column.
-
12 Oct 2006 4:28 AM
- Replies
- 18
- Views
- 6,513
If you pop up a demo page I can check it in safari and webkit (safari beta) real quick. I'm on a mac here.
-
11 Oct 2006 6:48 PM
Jump to post Thread: Help with Tabs by devol
- Replies
- 10
- Views
- 4,559
You need to include container.js from the main YUI files.
-
11 Oct 2006 6:47 PM
- Replies
- 18
- Views
- 6,513
Understood. I didn't see all the issues until I poked around a bit. Specifying in the column definition wouldn't either for the resize reasons you just described.
Comforting, isn't it, that this... -
11 Oct 2006 5:41 PM
- Replies
- 18
- Views
- 6,513
Ok after a bunch of reading I now realize that in order to have the css files be able to customize the columns, you must have a class for each row. And you can't read the style from the css, you can...
-
11 Oct 2006 4:48 PM
- Replies
- 18
- Views
- 6,513
ok so I see that you are using YAHOO.ext.util.CSS.updateRule to update the css rule dynamically. Could this be changed to us YAHOO.util.Dom.setStyle and giving every column's span an id? And then...
-
11 Oct 2006 4:22 PM
- Replies
- 18
- Views
- 6,513
Worst case I can dynamically generate the css for the page. Kind of ugly though.
-
11 Oct 2006 4:21 PM
- Replies
- 18
- Views
- 6,513
I realized the 22 column thing too after my initial post, however I was unaware that there were placeholder rules... I guess this is a by product of the positioning code. I was planning on having...
-
11 Oct 2006 2:42 PM
- Replies
- 18
- Views
- 6,513
One thing I noticed, is if I remove the height of the element, it of course only renders the top portion. But I am able to scroll "further to the right" than if I do specify the height parameter. I...
-
11 Oct 2006 2:41 PM
- Replies
- 18
- Views
- 6,513
No difference. I also tried using reset.css and fonts.css from yahoo and that did nothing as well.
-
11 Oct 2006 1:39 PM
- Replies
- 18
- Views
- 6,513
I'm using the Prototype library still. But If you'd like to see the problem:
In my code:
var myColumns = $R(1, 11*2, false).collect ( function (col, idx) {
var even = {header: 'Week '+... -
11 Oct 2006 1:11 PM
- Replies
- 18
- Views
- 6,513
Ok here is an example of my problem.
http://www.brokencrew.com/~sjacobs/grid/portal-yui.html -
11 Oct 2006 12:47 PM
- Replies
- 18
- Views
- 6,513
Rendering more than 11 columns causes weird rendering issues in my app. I don't know why that seems to be the magic number, but it is.
If I make the model contain 13 columns, the 12th and 13th...
Results 1 to 25 of 30
