cappuccino

Good book for learning language-design/implementation?

Hi, I would like to start contributing to Cappuccino -- mainly though, Objective-J. I have a good understanding of JavaScript, but not of language design/implementation. Is there a good book that covers this topic(s)? Thanks. ...

[Cappuccino/Objective-J] CPView tiled background?

Is there a way to tile an image in objective-j on a CPView? something along the lines of: [CPImage alloc] initWithPatternImage:@"Resources/grid.png" size:CGSizeMake(5.0, 5.0)] Thanks guys ;) ...

Using the `Main Menu` from a CIB

I'm creating a Cappuccino Application, and I have a CIB file with a menubar (from IB's Main Menu XIB template). Much like this one: How can I use that menubar in my application? Thanks. ...

Flex 4 vs JavaScript Options (Cappuccino, JQuery, etc.)

Rehashing an older post: http://stackoverflow.com/questions/1570070/jquery-vs-flex-choosing-a-platform-for-saas We are preparing to develop an application that is exceptionally dynamic and interactive. It's particularly heavy on the graphics side. We are 85% convinced that Adobe Flash built atop Flex is the right path to take, however...

Problem creating gui from xml -> Strange CPButton behaviour

Hallo, I'm new to objective-j and cappuccino and just have tried to create a small application, that creates the gui dynamically from a xml file. Unfortunately it works only partially. It seems that the button regions are disorder. This means, that the buttons also response if I click besides the button.... Please help me. I dont ge...

Snap to Grid UI in Cappuccino

Does anyone know how to do snap-to-grid in Cappuccino? Basically, I have draggable objects which I can drag into a target area. The target view needs to be set up with snap-to-grid feature. I've seen it with Mockingbird, so it's definitely possible. Any info is appreciated. Thanks! ...

Cappuccino Redirect

What would the best practice be to redirect someone to another page in Objective-J (Cappuccino)? ...

GWT vs. Cappuccino

Hi, I'm in the planning stage of a web application and I'm trying to choose between GWT and Cappuccino. I have an idea of which one I think is better, but my partner is sold on the other choice. I was hoping to get some feedback on pros and cons for each from people who have used one or the other or both. Thanks in advance for any ins...

Free UI tools for Cappuccino?

Hi, I'm looking for free tools to design the UI for my web app. I'm pretty new to this field, so please point me to acceptable solutions. Basically, I need to fill a "screen" with some controls, that's it. Thanks. EDIT: Well, as soon as nobody answers, maybe somebody can help me with this problem for some framework other than Cappuccino...

Objective-J Cappuccino want a list of buttons on main menu, when I click the panel refreshes with UI of button selected

Dear all, I am new to objective-j/c and cappuccino not really sure how this all fits together. The code below is taken from http://github.com/jfahrenkrug/CappuccinoLocations1 What I need to do is: I need a landing main menu which is a CPView called ie MainView with five or so buttons, when you click on the LocationButton on MainView is...

Using Cappuccino JS framework with PHP backend

I have php based application currently written using CI. I want to integrate Cappuccino JS framework at my UI layer. Does anyone know how can one go about doing that? ...

Cappuccino plist structure

The question is does anyone know what the structure of the (type-2) plist files in Cappuccino are? In Cappuccino there is a lot of use made of plist files. Some such as info.plist (type-1) follow a recognizable structure. These are fine i can inderstand them. <plist version="1.0"> <dict> <key>CPApplicationDelegateClass</key> <string>D...

Sproutcore v/s cappuccino

I was going through cappuccino. I did not find any details about the data(model) layer. The same exists in Sproutcore. Am I missing something? ...

Objective-J and Cappuccino and CGRect

I'm quite new to objective-j and the framework so I was attempting to drill down and understand some code, but I'm getting lost with the object (or struct) CGRect. Here is the full documentation: Cappuccino Ok, now I'm drilling down and I try to learn how the CPView class works: CPView.j Now, I see CGRect objects (or structures) every...

Clip a CPImage into a circle or other shape

I have a rectangular CPImage setup like so var img = [[CPImage alloc] initWithContentsOfFile:"Resources/img.jpg""]; I'd like to display that in my CPView subclass in a circle with the part of the image clipped (what lies outside the eclipse) remaining transparent. I tried this: - (void)drawRect:(CGRect)aRect { var path = ...

What is the Best Editor or IDE for Cappuccino Objective J development in Windows?

Could any one recommend me a Good Editor or an IDE for Cappuccino Web development in Windows. ...

Best tools web app that makes heavy use of dragging and dropping widgets on a page

I'm in the research phase for a web application I'm considering building and need some advice on the best choosing the best technology for the job. The app will make heavy use of dragging and dropping widgets onto a page and on top of other widgets. Two frameworks I'm aware of that have good support for this kind of thing are Sproutcor...

INVALID_STATE_ERR: DOM Exception 11 (WebKit)

I recently tested a Cappuccino app I was working on with Chrome and Safari. I get the error: INVALID_STATE_ERR: DOM Exception 11: An attempt was made to use an object that is not, or is no longer, usable. The lack of information is frustrating. What object and where did I attempt to use it? Chrome tries to answer the second question b...

Cappuccino development in windows

Hello, can i do cappucino development in 100% windows without apache? thanks ...

cappuccino django integration

Hi does anyone integrated cappuccino with django. I wanted to use cappuccino as a front-end and django as a backend and communicate via CFHTTPRequest / Json. I did the following: copy the the cappuccino app to the templates folder of my django app. Then used a render_to_response to the index.html generated by cappuccino. Unfortunately ...