Re: [qooxdoo-devel] Builder() and TabPanes?

2006-10-08 Thread Mike Crowe
this method to create a ButtonView and it seems to work (I have > attached the XML document). > > HTH, >John > > Mike Crowe wrote: > > I get the feeling that it is not widely used. Is anybody actually using > Builder() in a serious way ? Does it support all widg

Re: [qooxdoo-devel] Aptana editor

2006-10-06 Thread Mike Crowe
fining classes and properties. > > > Mike Crowe-3 wrote: >> >> I've tried duplicating the existing structure like Dojo, and can get >> it partially working. Documentation is here on how: >> http://aptana.com/docs/index.php/Creating_a_new_JavaScript_library_project

Re: [qooxdoo-devel] Builder() and TabPanes?

2006-10-06 Thread Mike Crowe
> I get the feeling that it is not widely used. Is anybody actually using > Builder() in a serious way ? Does it support all widgets ? Is there > some trick/secret that I'm missing ? That's starting to be my feeling too. Prior to the namespace revision, there was a QxBuilder project, which se

Re: [qooxdoo-devel] this.getFocusRoot() has no properties error

2006-10-06 Thread Mike Crowe
[quote]It does not happen in the other browsers. [/quote] Actually, I'm getting this error in Firefox, not IE. However, that did solve the problem. Thanks Jim! - Take Surveys. Earn Cash. Influence the Future of IT Join Sour

[qooxdoo-devel] Builder() and TabPanes?

2006-10-05 Thread Mike Crowe
Hi folks, Can't remember if I asked this before. If I did, apologies. I'm creating a pretty complex form. I'd like to have: ToolBar TabBar with TabPages/Panes Builder() based form inside each page I can't figure out a way to create the above in Builder() xml format. Can it be done? TIA

[qooxdoo-devel] this.getFocusRoot() has no properties error

2006-10-05 Thread Mike Crowe
Hi folks, What might cause this error? It seems to occur after I popup a modal window, or popup a DateChooser. TIA Mike - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'

Re: [qooxdoo-devel] Events and DateChooser

2006-10-05 Thread Mike Crowe
Height: null, > resizeable: false > }); > auto(); > add(cp); > addToDocument(); > open(); > } > }); > > > > > Mike Crowe-4 wrote: > > >

Re: [qooxdoo-devel] Aptana editor

2006-10-05 Thread Mike Crowe
I've tried duplicating the existing structure like Dojo, and can get it partially working. Documentation is here on how: http://aptana.com/docs/index.php/Creating_a_new_JavaScript_library_project_wizard I *think* that they use comment fields in the javascript to help with auto-complete (I can get

[qooxdoo-devel] Using qx.client.Builder() to construct a notebook?

2006-10-05 Thread Mike Crowe
Hi folks, I'm trying to use qx.client.Builder() to build a form. I want to include a TabBar if possible. Here's what I'm trying:

[qooxdoo-devel] gmail email not getting into qooxdoo-devel mailing list

2006-09-30 Thread Mike Crowe
I was wondering why everyone was ignoring my questions! :D Just an FYI for those sending to gmail... Delivery to the following recipient has been delayed: qooxdoo-devel@lists.sourceforge.net Message will be retried for 2 more day(s) Technical details of temporary failure: TEMP_FAILURE: S

[qooxdoo-devel] Events and DateChooser

2006-09-29 Thread Mike Crowe
Hi folks, How do you get an event when a user clicks a date (or presses space)? I've reviewed David's event patch, tried it and other combinations, and nothing. Can somebody please help? Here's what I'm trying now: var chooser = new qx.ui.component.DateChooser; chooser.auto();

[qooxdoo-devel] What's causing this error?

2006-09-26 Thread Mike Crowe
Hi folks, I'm getting this error: 021391 ERROR: qx.ui.layout.GridLayout[42]: Error while getting column property (2|widthParsed): TypeError - this._columnData[vColumnIndex] has no properties I've duplicated the GridLayout as per the demo: var grid = new qx.ui.layout.GridLayout; grid

[qooxdoo-devel] Help! HTML in TabPane -- How to load it once via an event?

2006-09-25 Thread Mike Crowe
Folks, This is driving me crazy. Maybe I'm too tired, but I can't seem to get this right. Using latest svn of qooxdoo. I'm building a dynamic shared calendar as part of a larger enterprise project. I'm loading a set of 6 tab panes from javascript created by PHP. In the example code below, I've

Re: [qooxdoo-devel] Please help with html overflowing DIV in TabPane

2006-09-25 Thread Mike Crowe
I think I've figured it out.  If you ever set an inner division with dimensions greater than the parent division, the parent dimensions are ignored.  Further, "100%" doesn't seem to work either.Thanks! MikeOn 9/25/06, Sebastian Werner <[EMAIL PROTECTED]> wrote: Hi Mike,please create a new qooxdoo d

[qooxdoo-devel] Please help with html overflowing DIV in TabPane

2006-09-24 Thread Mike Crowe
OK, this is complex, so I'll do my best.  I wish I could upload whole app, but I hope it won't be necessary.Here's how I'm declaring my tab pane.  BTW, the overall system is working almost correctly.  This is strange. var tabView = new qx.ui.pageview.tabview.TabView ;with(tabView){ ...snip...    v

[qooxdoo-devel] Remove navBar in dateChooser

2006-09-15 Thread Mike Crowe
Hi folks, I want to build a year grid of DateChoosers (show a year at a time, etc). However, to do it I'd need to hide the navBar. Is this easy? Can somebody give me a pointer? TIA Mike - Using Tomcat but need to do more? N

[qooxdoo-devel] window.innerWidth or document.body.offsetWidth

2006-09-15 Thread Mike Crowe
Hi folks, Is there a qooxdoo variable that universally shows the width/height of the browser window? I've searched but can't find. Mike - Using Tomcat but need to do more? Need to support web services, security? Get stuff d

[qooxdoo-devel] Hide navBar in DateChooser?

2006-09-12 Thread Mike Crowe
Hi folks, I want to build a year grid of DateChoosers. However, to do it I'd need to hide the navBar. Is this easy? Can somebody give me a pointer? TIA Mike - Using Tomcat but need to do more? Need to support web services,

Re: [qooxdoo-devel] TabView and adding HTML to TabViewPane?

2006-09-10 Thread Mike Crowe
ctor()". > > Also, in general, you must also define a width/height for an object. So > maybe it's a good idea to first store the instance inside a local > variable before add it to the parent widget. > > BTW: If you don't need any auto-sizing for the HTML, the best

[qooxdoo-devel] TabView and adding HTML to TabViewPane?

2006-09-09 Thread Mike Crowe
Hi folks, I want to add a division to a TabPane, and then load that page with HTML via ajax. I'm trying to do the first step now. I can create the tabs fine, but I can't figure out how to put an HTML inside the tab. Here's what I'm currently trying: var tabDay = new qx.ui.pageview.tabview.TabVi

Re: [qooxdoo-devel] Simple page (based on Symfony-project.com) won't render in IE

2006-09-09 Thread Mike Crowe
s to close the tag this way: > src="/apps/frontend/templates/main_page.js"> > > I hope this helps. > > Sebastian > > > Mike Crowe schrieb: > > Hi folks, > > > > I'm sure this is something silly, but I've been developing in firefox > &

Re: [qooxdoo-devel] Can't execute code from a freed script

2006-09-09 Thread Mike Crowe
dperez yahoo.es> writes: > > > Created Bug 136. > > Sebastian Werner wrote: > > > >> Hi, > >> > >> Do I open a new bug report? > > > > Yes, open a bug is maybe a good idea. > > > FWIW, I'm having this same problem. Strange. About to post another issue, which is unrelated but also just

[qooxdoo-devel] Simple page (based on Symfony-project.com) won't render in IE

2006-09-08 Thread Mike Crowe
Hi folks, I'm sure this is something silly, but I've been developing in firefox and things work great. Now, IE won't come up. My directory structure is: Source: /apps/frontend/templates/ Qooxdoo: /lib/qooxdoo I've edited qx.js to fix my resourceUri path to "/lib/qooxdoo/..." according to ho

Re: [qooxdoo-devel] Document, Layout, and when to add controls to where?

2006-09-06 Thread Mike Crowe
; > > qx.core.Init.defineMain(function() { > > > > It should be: > > > > qx.core.Init.getInstance().defineMain(function() > > > > in recent versions. > > > > Cheers, > > > > Sebastian > > > > > var doc = this.getClientWi

[qooxdoo-devel] Help me save my hair! Layouts and 100% height/width's

2006-09-06 Thread Mike Crowe
Argh, please help me folks. I'm using the code below, which portions of which I have shamelessly copied from existing AtaGlance.js. Essentially, I have 3 quadrants, Top (File menu), Left (tree), and Client Area. Using a FlowLayout for master layout. Create a Vertical Layout for toolbar, add toolb

Re: [qooxdoo-devel] Document, Layout, and when to add controls to where?

2006-09-05 Thread Mike Crowe
ou can create almost > anything, just do it one step at a time. Once things are on the page you > can then remove the fixed dimensions to see if everything still shows, and I > suggest removing the dimensions one level at a time also so you know where > you are if something stops working.

Re: [qooxdoo-devel] Document, Layout, and when to add controls to where?

2006-09-05 Thread Mike Crowe
FWIW, the error I'm getting is: qx.core.Init.getInstance().getComponent() has no properties. On 9/5/06, Mike Crowe <[EMAIL PROTECTED]> wrote: > Hi folks, > > I really haven't studied this enough, so any pointers would be appreciated. > > Looking at the AtAGlance.js

[qooxdoo-devel] Document, Layout, and when to add controls to where?

2006-09-05 Thread Mike Crowe
Hi folks, I really haven't studied this enough, so any pointers would be appreciated. Looking at the AtAGlance.js file, I'm trying to understand how and where to add my objects. For instance, in the "createToolbarDemo routine, here's what happens: Menubar Example: Individual MenuButtons added t

[qooxdoo-devel] JS guru's -- Help! Trying to use with(...) and qooxdoo

2006-09-05 Thread Mike Crowe
Hi folks, I'm working on an interesting system, but I can't figure out what I'm doing wrong. I'm trying to use nested with statements (maybe that's my problem). The following code doesn't yield a toolbar like I think it should. Please help! var doc = qx.ui.core.ClientDocument.getInstance(); var