Questions tagged [bootjack]

Bootjack is a porting of Twitter Bootstrap 3.0 in Dart.

17 questions
4
votes
1 answer

Get access to dom via Angular2 Dart

I'm trying to get access to the DOM in an Angular2 Dart project since I'm using a GUI library that is not Angular2 compatible. The following code works 100% when called from a button click event: Modal.use(); Modal carriersModal = new…
Jan Vladimir Mostert
  • 12,380
  • 15
  • 80
  • 137
4
votes
1 answer

How to use Polymer tag in dart?

I try to use the content-tag in dart polymer. The Polymer-Element is displayed properly, but the content is not displayed at all. This is my code:
LinusK
  • 337
  • 2
  • 11
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
2
votes
0 answers

Dart - Removing disallowed attribute - killing my dropdown buttons

Any idea what this is? After upgrading Dart to 1.11.1, I get these when loading HTML via Dart void loadHtml(String component, String div, function) { // get today's date to be used for cache busting DateTime today = new DateTime.now(); …
Jan Vladimir Mostert
  • 12,380
  • 15
  • 80
  • 137
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

data- attribute in dart dynamic elements

I am creating some html elements dynamically with code such as new ButtonElement() and its easy to add classes like ..classes.add('dropdown-menu') I want to add the following html to it data-toggle="dropdown" but dart doesn't allow me to do so.…
khany
  • 1,167
  • 15
  • 33
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
1
vote
1 answer

Dart TreeSanitzer: No static getter 'trusted' declared in class 'NodeTreeSanitizer'

I'm using the Bootjack Datepicker and after upgrading Dart to 1.12.1, I'm all of a sudden seeing only half a calendar with no days and with this exception: Exception: No static getter 'trusted' declared in class 'NodeTreeSanitizer'.…
Jan Vladimir Mostert
  • 12,380
  • 15
  • 80
  • 137
1
vote
1 answer

Bootjack Modal generates exception: Class 'TransitionEvent' has no instance getter 'relatedTarget'

I use Rikulo/Bootjack to input parameters in the modal window but dquery generates multiple exceptions "Class 'TransitionEvent' has no instance getter 'relatedTarget'" in the DartEditor-1.10.1 (Win7 and Linux) with the Preferences: Run and Debug:…
1
vote
1 answer

Using bootstrap navbar in bootjack

I'm using twitter bootstrap's CSS to create a standard bootstrap navbar and then calling Dropdown.use(); which makes the navbar work automagically. When I re-size the page or view it on mobile, the navbar displays this menu button which does…
Jan Vladimir Mostert
  • 12,380
  • 15
  • 80
  • 137
1
vote
1 answer

Using Bootjack CSS in child Polymer elements

I started using Bootjack, but I cant use the classes in my Polymer elements if I have imported the CSS file in my index.html. It does work if I import the CSS in each component (which prints an warning that I use the CSS file multiple times). Is…
Azael
  • 614
  • 4
  • 16
1
vote
1 answer

Can't read 'package:rikulo_commons/html.dart' (Could not find asset rikulo_commons|lib/html.dart.)

After following the directions at: https://github.com/rikulo/bootjack When I try to "generate js" from the Dart Editor I get the error message: [Info from Dart2JS]: Compiling StratoIde|web/ide.dart... [Error from Dart2JS on…
Dejas
  • 3,511
  • 4
  • 24
  • 36
1
vote
1 answer

Using a Bootjack Component in Angular Dart Component

I am trying to use Angular Dart and Bootjack for my project. I have a small test program in which I've written a component that uses the dropdown from Bootjack, however the onclick does not seem to be working. If I put the same html code in the…
user3613162
  • 229
  • 2
  • 11
1
vote
1 answer

Bootjack and DQuery internal error. Pub dependency hell

I am trying to implement a modal window in my dart application using the Bootjack library within polymer custom elements. No matter what I do my environment keeps throwing an exception. The exception occurs in the DQuery package. Internal error:…
user1026498
  • 433
  • 2
  • 10
  • 22
0
votes
1 answer

Rikulo Bootjack Dart modal window not working on android devices

I'm building a webapp with Dart and I've used Rikulo's Bootjack library to get some Bootstrap elements. I have two modal windows in my app. One of them is lanunched by triggering a button so I just had to follow the…
1
2