Questions tagged [cappuccino]

Cappuccino is an Objective-J framework for developing modern applications which run in a web browser.

Cappuccino is an Objective-J framework for developing modern applications which run in a web browser.

149 questions
0
votes
1 answer

Integrating Cappuccino with Ruby on Rails

I have a Cappuccino app that I am integrating with a Rails backend. A key feature of the app is authentication which is managed entirely by rails. The way I set it up is that the cappuccino js conditionally executes if the user is logged in, like…
Andrew Lauer Barinov
  • 5,694
  • 10
  • 59
  • 83
0
votes
2 answers

Cappuccino: Keyboard events getting squashed in reCAPTCHA input field

I'm integrating a reCAPTCHA into my Cappuccino app and I have it all working besides this odd input functionality in the reCAPTCHA input text field: Only some keys seem to work, "qwrszcv" and a few other letters work fine, but most other keys don't…
John Sparwasser
  • 1,015
  • 13
  • 26
0
votes
1 answer

Cappuccino - Load images from disk to a CPImageView

I am looking for a way to load an image from my disk into a CPImageView. Is this possible?
maza23
  • 555
  • 1
  • 5
  • 16
0
votes
1 answer

Connecting / Linking CIB files to a regular application template in cappuccino

I'm new to cappuccino framework and I would like to know if there is any way i can link a regular application template to cib files. Let's say i just generated an application using the application template and i would like to re-use some cib files…
Jevl
  • 924
  • 9
  • 8
0
votes
1 answer

CPRangeException thrown when objects added to an CPArray

In my cappuccino app, I am reading from an RoR backend via JSON and putting the results onto a list. When the app first loads everything is fine, but when I edit an item (and write the edit to the database) there is an error generated when the items…
Andrew Lauer Barinov
  • 5,694
  • 10
  • 59
  • 83
0
votes
1 answer

Resize handlers on Cappuccino

how do I add the resize handlers to a CPView in Cappuccino? I saw an example that has rotation handlers, but I want to resize the view freely. Rotate example
maza23
  • 555
  • 1
  • 5
  • 16
0
votes
1 answer

How to make a custom editable table column in cappuccino

I am trying to make a CPTableColumn that can change values without having to click it. An Example is I am trying to have a slider show up in the table that when dragged will change the table value for the row. In looking into the CPTableView I see…
zachzurn
  • 2,161
  • 14
  • 26
0
votes
1 answer

How to set up Objective-J and Cappuccino

I am trying to start development in Objective-J but I am completely lost as to how to set it up. The documentation about setting it up, didn't really help me. I am very familiar with web development and Objective-C so I can write the programs if I…
Tyler Crompton
  • 12,284
  • 14
  • 65
  • 94
0
votes
3 answers

CPPredicateEditor is blank

I'm building a web application with the Cappuccino framework, and I'm using the new Xcode integration through the XcodeCapp-Cocoa listener. When I place an NSPredicateEditor into a nib file (like MainWindow.xib), and allow it to be converted into a…
Luke Fletcher
  • 348
  • 2
  • 12
0
votes
1 answer

Rails / Cappuccino App Not Loading on Heroku

I have a rails app with a cappuccino front end that I am trying to deploy onto Heroku. The app works fine when I run it on localhost using WEBrick, but when I push onto Heroku I get the error message ActionController::RoutingError (No route matches…
Andrew Lauer Barinov
  • 5,694
  • 10
  • 59
  • 83
0
votes
1 answer

Can CPPredicates be used on native javascript objects?

Can you use a CPPredicate to check native javascript objects in cappuccino? I am trying to filter a native javascript array that has native javascript objects in it.
zachzurn
  • 2,161
  • 14
  • 26
0
votes
1 answer

Adding a cappuccino CPProgressIndicator with Xcode 4

building the GUI of my cappuccino project, adding an NSProgressIndicator into the GUI result in an error "cannot decode object of class (NSProgressIndicator)" while compiling from the XCodeCapp-cocoa. I tried to manually specify a "Custom Class" to…
Flavien Volken
  • 19,196
  • 12
  • 100
  • 133
0
votes
1 answer

Unable to add a category to a CPArrayController (cappuccino)

I'm trying to add a method to the CPArrayController class via a category. The template for adding reverse to the CPString works fine but I'm unable to add anything to the CPArrayController. While compiling I get the error SyntaxError: * Could not…
Flavien Volken
  • 19,196
  • 12
  • 100
  • 133
0
votes
1 answer

How to send a single form with files and textfields in Cappuccino Objective-J

I have found that with Cappuccino the only way to send files from user to server is using the UploadButton class from https://github.com/MCF/FileUpload The problem is that UploadButton creates a new form for each file. I need to send two files and 5…
Sergey Filkin
  • 475
  • 1
  • 6
  • 10
0
votes
1 answer

Why am I getting this error in Cappuccino: "missing ; before statement : if(_2f5===_2e4){"

I have been developing with cappuccino for a while now and all of a sudden I am getting a weird error with "Objective-J.js". The error message is: "missing ; before statement : if(_2f5===_2e4){" I am having a really hard time figuring out what is…
zachzurn
  • 2,161
  • 14
  • 26