Web UI lets you build web apps as if you had a browser from the future. You can use the cool new web technologies like Web Components, Model Driven Views and Dart today.
1
vote
1answer
27 views
dart web ui webcomponents extending off html elements in future
I read this on darts web ui intro page.
The constructor attribute indicates the class that defines this
component’s behavior (for example, “CounterComponent”). Today, this
class must be a ...
0
votes
0answers
21 views
How to use Dart with Webstorm 6 on Windows (running Codelab from Google IO 2013)
I searched for but didn't find any other posts remotely related to my question. Essentially, I'm attempting to follow the Dart Codelab from Google IO 2013 which I found here: http://goo.gl/4E21M
I'm ...
0
votes
0answers
23 views
What advantages do Web UI components have over DWT components for RIA? [closed]
I'm appreciating the Dart platform/ecosystem and am trying to choose/hedge. Not being or wanting to be a component developer as much as a component user/extender/integrator DWT is very appealing. It ...
0
votes
0answers
10 views
How to define attributes on custom element in dart
I'm defining a custom element (toggle button) and would like to set a custom attribute on the element
<element pressed="true" name="..." constructor="..." extends="div">
...
The custom ...
0
votes
0answers
4 views
Can dart WebComponents reference external stylesheet?
I'm trying to separate the stylesheet of my dart web components from the HTML file for easier readability. Putting in the section of the component definition HTML file doesn't work though. Can ...
1
vote
1answer
57 views
Accessing Template Elements Prorgramatically in Web UI
Is there any easy way to access the associated element object of an element declared in your template. For instance say I have a button on my template and I want to access the ButtonElement object so ...
0
votes
1answer
68 views
how do I simply run latest examples of project like web ui or widgets
If something I have specifies web ui in its pubspec it eventually ends up in a place like $HOME/.pub-cache/hosted/pub.dartlang.org/web_ui-0.4.7+3. I noticed that the todomvc appears in the example ...
4
votes
1answer
66 views
How to style internal elements of a Dart Web Component?
I am playing with the popover component in the Dart "bee" Web Components package (bee)
However, I can't see a way of changing the default styling for internal elements of the component. I want to ...
0
votes
1answer
89 views
Data-binding via Dart web-ui in a Bootstrap Popover
I'm trying to use two-way data-binding to a Dart variable inside a Bootstrap Popover with no success. My code looks something like:
<!DOCTYPE html>
<html>
<head>
<meta ...
0
votes
3answers
109 views
How to create forms in dart?
What is the best way to create forms (textfields, checkboxes, radio buttons, ...) and handle the data after the user's input?
Just use web components as dart's web ui?
...
2
votes
1answer
60 views
How do I get a reference to an event stream from a within an event handler?
I have a need to manage a global state of a number of web components on my web page. (e.g. Each web component has a "select" button/function and I track components to make sure only one component is ...
3
votes
3answers
104 views
Does @observable have to be used on every field?
I've noticed if I do not use @observable in any of my web ui code all fields/members changes are picked up automatically with the data binding syntax.
The issue I run into is when picking one field ...
2
votes
1answer
46 views
Why can't I select content with the instantiate argument in Dart?
The following works fine,
<!DOCTYPE html>
<html>
<body>
<element name="x-editable" constructor="EditableComponent" extends="div">
<template>
...
1
vote
1answer
40 views
How do I test the type of the detail from a CustomEvent in Dart?
I hope you'll excuse what I expect is a real newbie question, but I haven't been able to find a good solution to this problem…
If I have a simple class...
library segmented_buttons_list;
import ...
2
votes
1answer
47 views
How do I implement enums that are accessible to WebUI HTML templates in dart?
I would like to implement an enum:
enum Visibility = visible | hidden | collapsed
I would like to be able to set this in HTML code. There is some magic that allows the compiler to parse the string ...
1
vote
1answer
47 views
How do I reference WebComponent instances?
I would like to pass a reference to WebComponent instances created in markup to the WebComponent dart class. For instance:
html:
<element name="x-container>
<template iterate="x in ...
2
votes
1answer
76 views
Is it possible to declaratively bind a CustomEvent handler when using Dart Web UI WebComponents?
I've tried to bind a custom event handler to a WebComponent that has an EventStreamProvider exposed via a getter, but it comes back with "Class 'DivElement' has no instance getter 'onMainAction'.".
...
3
votes
1answer
80 views
How do I style elements in Dart Web UI templates?
Say I have a custom component with
<head>
<link rel="stylesheet" src="...">
</head>
<body>
<element name="elem">
<template>
<ul class="foo">
...
1
vote
1answer
76 views
Dart Web UI: How do I get a reference to an item within in a web component?
If I add a number of web components to my app as in myapp.html below:
<head>
<link rel="components" href="package:xclickcounter/xclickcounter.html">
</head>
<body>
...
0
votes
1answer
49 views
dart - its_all_about_you tutorial error
I am trying to run the latest version of its_all_about_you with the latest version of Dart Editor/SDK and I am getting this error. I copied the latest source from github
Internal error: ...
0
votes
1answer
38 views
dart: cannot resolve class name 'ListBase' from 'ListWrapper
Tried the webui_click tutorial target
Got an error
cannot resolve class name 'ListBase' from 'ListWrapper
Using this version of Dart Editor
Dart Editor version 0.4.5_r21094
Dart SDK version ...
0
votes
1answer
68 views
Where is the web_ui wizard in the Dart Editor?
The Get Started with Web UI Dart tutorial displays this image:
...but I don't see the "Web application (using the web_ui library)" option in the latest Dart Editor (version 0.5.0_r21823). Is the ...
3
votes
1answer
62 views
What's the best Way to import Components via Link-Tag from a Package?
Currently I import components from a package by a relative path:
<link rel="components" href="packages/packageA/components/login.html">
However when I start nesting packages this doesn't work ...
2
votes
1answer
67 views
What is the difference between watcher.dart and observe.dart?
These two libraries, watcher.dart and observe.dart seems to provide very similar functionality. Why are they both part of the web_ui package?
Can I use and include them directly, or only through ...
7
votes
2answers
439 views
How to build a complex Web UI application with multiple views?
I am going to build complex application having many different views. Imagine for example eshop solution. There can be a lot of different views:
Contact page with some static information
Registration ...
2
votes
1answer
70 views
Can Web UI template be added to a Dart library package?
The generated sample content for a web_ui applications adds xclickcounter.dart AND xclickcounter.html in the web folder. This is an Application Package.
How may I add these to the lib folder to be ...
6
votes
1answer
164 views
Dart webUI CSS issues
I am having trouble with styling when using webUI.
When i inject my dataValues, my design is broken.
In my concrete case, my menu is not displayed right.
From what i can see, it looks like the ...
2
votes
1answer
48 views
Dart WebUI html data values
I am having some issues with dart's web ui package.
First of all, i see that web ui is not interpreting html tags.
Is it not possible to use, for example <br /> tags, to inject html code ...
1
vote
1answer
61 views
Can I add Dart Web UI bindings to DOM elements created in code?
In the Dart Web UI package, it is possible to create bindings using the {{}} or bind-value syntax. Is this also possible, when DOM elements are created in code?
Something like
new ...
1
vote
1answer
87 views
Dart lang: How do you browser feature test for file uploading & file reading APIs?
How do you feature test for browser support using Dart? Things that are common to test for in Javascript. It is unfortunately still a necessary evil.
For instance, how do you write a test if the ...
4
votes
1answer
73 views
Dart confusing TYPE error
I am building a web application using dart with web_ui.
Everything was working fine until i added the web_ui pub, and now, when I am trying to run a build.dart file I get an error:
Uncaught Error: ...
0
votes
0answers
69 views
How do I properly configure my build.dart for deployment?
I'm pulling my hair trying to figure out an easy way to include the compiled web-ui code in a war file for deployment.
My plan was to make a deploy.dart like so:
import 'dart:io';
import ...
3
votes
1answer
44 views
How do I set a default selected option in a Web UI <select> tag?
I have have a <select> tag with a few options. How do I set the initially default selected option?
2
votes
1answer
96 views
Dart WebUI build error
I am having problems adding web_ui to my existing dart application.
I haven't even added any of the webui specific code to my html file, i'm just trying to build.
I added the web_ui to pubspec.yaml ...
2
votes
1answer
125 views
Dynamically add a web component to a div
I started with the generating click-counter example. I made the click-counter into a library which I then imported into my main file. The click-counter component can be added manually by putting the ...
1
vote
0answers
93 views
Dart library layout with Web Component
My program was working fine until it became necessary to build a library that used a custom web component. I can't understand what Dart is complaining about. It gives a warning saying it "cannot ...
4
votes
1answer
75 views
How do I run commands after build.dart builds?
build.dart is run by Dart Editor whenever a file changes. Many developers use build.dart to compile their Web UI apps. How can I run other commands after Web UI compiler finishes?
3
votes
1answer
62 views
How do I pass arguments to Web UI's dwc compiler from build.dart?
I want to turn off URL rewriting by dwc (the Web UI compiler). I run dwc via build.dart. How do I pass an argument from build.dart down to dwc?
2
votes
1answer
75 views
Custom Element - null reference from query() in constructor
I'm working on my first Dart app, having completed the Game of Darts tutorials. I am trying to create a semantically named top-menu element that will eventually display a list of navigation menu tabs ...
2
votes
1answer
86 views
dart web component don't refresh a List on UI
I'm trying to create a simple web component which purpose is to display messages for some seconds and then dissapear. I've got displayed the first two Strings but when I call the informar method ...
4
votes
1answer
99 views
How do I create components that can take positional children as arguments (Dart)?
I am looking for resources on how to make webcomponents that can take positional children arguments. Something like:
<x-editable-component>
<span>{{value}}</span> // this could be ...
0
votes
0answers
70 views
Dart Editor doesn't like my css styles
Just trying to move my half-backed Dart project to Apache web server.
First surprise: Dart Editor (?) fix my relative links to be more relative
Consider the following html style declaration in ...
2
votes
1answer
94 views
How to make a preloader for webpage in dart
I have a site that I build using the HTML, CSS3 and Dart. Now, how would I make a preloader, that would run before all the content for the page was loaded?
I was even thinking of using something like ...
2
votes
2answers
124 views
How can a Dart Web Component obtain a reference to its children?
For illustration reasons, I've created a class inheriting from WebComponent called FancyOption that changes to a background color specified by text in one child element upon clicking another child ...
0
votes
1answer
44 views
Is it possible to inline Web_UI components?
I have a habit of taking things to the extreme...
I also like the idea of wrapping structural sections of the site in custom semantic wrappers.
So when I started building web_ui components I ended ...
2
votes
1answer
72 views
Data binding using radio buttons and Web UI
I cannot get the following code for data-binding using radio inputs to work:
<!DOCTYPE html>
<html>
<body>
<div>
<input type="radio" name='veggies' ...
1
vote
1answer
78 views
Why doesn't this Web-UI code work?
I created a new web app with web-ui. All packages seemed to have installed correctly. I ran the generated "click-counter" example but it didn't appear. I went to the Web-UI article and pasted this ...
6
votes
1answer
309 views
Making a Map or a List observable in Web UI
I can make a String or a num type observable by using the @observable declaration in the Dart code:
@observable
var x = '';
and {{ }} syntax in the html:
<div>x = {{x}}</div>
But ...
5
votes
1answer
116 views
Dart - How does one dart project import code from another dart project without using pub?
Suppose I have two dart projects
Project A contains code that uses web component to create bunch of UI widget (similar to https://github.com/kevmoo/widget.dart)
Project B contains my front end code ...
0
votes
1answer
104 views
Dart simple webcomponent confusion
Somehow I could not build my very first Dart web components example. The project is very simple and taken from Seth blog.
First the build.dart file should be places in root folder of the project (not ...
