Questions tagged [rikulo]

Rikulo is a cross-platform framework for creating Web and mobile applications in Dart and HTML 5.

Rikulo is a cross-platform framework for creating Web and mobile applications in Dart and HTML 5. You can access your application directly with a modern Web browser without any plug-in. You can also build it as a native mobile application accessing the device's resources transparently.

Rikulo is distributed under an Apache 2.0 License.

53 questions
9
votes
1 answer

What is Rikulo dart really?

I have been reading the abstracts on the website http://www.rikulo.org but all those cryptic vague statements do not help me. The examples are all about visuals. I do not understand what this framework is capeable of doing. The big picture is…
Gero
  • 12,993
  • 25
  • 65
  • 106
3
votes
2 answers

Rikulo Bootjack + PolymerDart

I'm trying to use the excellent Bootjack library with PolymerDart, and although the CSS theming is working, the dart code isn't executing in the Polymer component. I've created a dead simple test showing the problem. You'll see the raw html version…
Shane
  • 3,051
  • 3
  • 40
  • 45
3
votes
1 answer

How to send data from client to server using Rikulo stream

I'm trying to use Rikulo stream, and i have some trouble when i want to send data from client to server. Suppose that i have a registration form and i want send a request to check if that username already exist in my database. I have adopted MVC…
Biagio Chirico
  • 646
  • 5
  • 14
3
votes
1 answer

How to access POST data sent from a browser to Rikulo Steam Server

I ask the browser to POST JSON data to the stream v0.5.5 server using ajax. In the server side, how can I receive the data from the ajax request? My client:(Google Chrome) void ajaxSendJSON() { HttpRequest request = new HttpRequest(); // create a…
Allen Wayne
  • 121
  • 6
3
votes
1 answer

Add package link in a custom folder

I have create a folder (named webapp) in a Dart project where I put some server side classes. When I run pub install ( or pub update ), to import the libraries that I use in the project, the dependencies are correctly download and some link to this…
Fabio Benedetti
  • 317
  • 2
  • 12
3
votes
1 answer

Trying to use Rikulo, but failing on dart:coreimpl import

I'm just getting started with dart, and want to try out rikulo. But upon importing it, I get an error Failed to load resource dart:coreimpl According to…
Marc Hughes
  • 5,808
  • 3
  • 36
  • 46
2
votes
1 answer

Bootjack - pure polymer-dart implementation

I've been using Bootjack for a while now and it's great. I love how it enables me to create my familiar Bootstrap styled applications with my current favourite programming language, Dart! However, with all the Material Design and Polymer updates…
Dieter Hubau
  • 649
  • 2
  • 6
  • 17
2
votes
1 answer

Rikulo security client side login

I've been trying to create a Dart SPA using Rikulo security to log in. I have been unable to do so successfully. I found the following in the docs: //If you'd like to login in an Ajax request, SOAP or others, //you can invoke this…
basheps
  • 10,034
  • 11
  • 36
  • 45
2
votes
1 answer

What is the relationship among Rikulo UI, Rikulo Gap and Bootjack?

Can I use them separately? Can I use them with other solutions such as polymer?
Tom Yeh
  • 1,987
  • 2
  • 15
  • 23
2
votes
2 answers

How to vary the width of TextBox views using Rikulo Anchor Layout

I am new to Dart and Rikulo. class NameView extends Section { View parentVu; // the inputs DropDownList titleDdl, suffixDdl; TextBox firstNameTBox, middleNameTBox, lastNameTBox; // the labels TextView titleLbl, firstNameLbl,…
2
votes
2 answers

(Dartlang) How can I detect the selected item in the listview

rikulo.org has great example for list-view at http://rikulo.org/resource/js/examples/index-list.html In this example, how can I detect the selected items in the list? For example, how do I know 'Row 5' is selected if I click or touch on 'Row 5' ?
bboona
  • 29
  • 1
2
votes
2 answers

Can UI created in Rikulo be indexed by search engines?

UI is created in Dart and the Dart code will be compiled to JavaScript. How to make them indexed by the search engines?
Tom Yeh
  • 1,987
  • 2
  • 15
  • 23
2
votes
1 answer

Does Rikulo support mysql database?

I know rukilo is an UI framework for Dart language but I wonder if it supports to use Mysql? And if it is, how to connect mysql with Dart? Thank you
hoantrung
  • 191
  • 1
  • 1
  • 6
2
votes
1 answer

Is there any way to use support the Builder pattern in Rikulo?

I am interested in using the Builder pattern for declaratively creating UI with Rikulo. Is there a way to do so? Does the Dart syntax support a similar mechanism? For example, div( label(value:"OK") );
chanwit
  • 3,174
  • 2
  • 23
  • 20
1
vote
2 answers

Dart with RIkuloUI. Why is there no output?

Good evening Coders, I have a serious problem with Dart and Rikulo_Ui to be more specific the problem only comes with Rikulo_Ui. I am really a newbie to all Dart stuff so please be gentle and don't hesitate to ask for more infos. My Problem is that…
Torsten Hopf
  • 69
  • 10
1
2 3 4