Questions tagged [enyo]

An open-source JavaScript framework for building single-page applications, based on code that powered HP webOS 3.0 for the HP TouchPad device, but now supporting a wide range of desktop and mobile browsers. The core principles are object-orientation, encapsulation of view and functionality, and code reuse.

An open-source JavaScript framework for building single-page applications, based on code that powered HP webOS 3.0 for the HP TouchPad device, but now supporting a wide range of desktop and mobile browsers. The core principles are object-orientation, encapsulation of view and functionality, and code reuse. More details at http://enyojs.com.

196 questions
0
votes
1 answer

Dynamic ListSelector Array problem

all i am working now days on WebOs 3.0 This question may not require WebOs knowledge. My problem is i am using a list selector is like a HTML dropdown. its static code {kind: "ListSelector", name: "mySelector"} this.$.mySelector.setItems( [ {…
Ajay Patel
  • 5,298
  • 11
  • 55
  • 87
0
votes
1 answer

how to use the Dojo code in Enyo..?

I'm a new developer in Enyo(TouchPad). I would like to develop an app consisting some charts in it. so I'm trying to use Dojo framework libraries in Enyo. Can anyone please help me in how to include the dojo code my application. I'm posting my code,…
harry
  • 310
  • 1
  • 4
  • 17
0
votes
1 answer

Does Palm/HP webOS 3.0 / Enyo framework support image maps?

Does Palm/HP WebOS 3.o / Enyo framework support image maps?? I have an HtmlContent control that contains "image maps" -- an image with links embedded in hot spots using the HTML "usemap" attribute. However my those links don't seem to be active, and…
rajsen
  • 1
0
votes
3 answers

Can one use native javascript/coffeescript constructors with the webOS Enyo framework?

Palm's Enyo framework uses a DSL-ish "Kind" system to create objects based on prototypes. Unfortunately, this results in, what I believe to be, untidier code. Does anyone have any experience using/hacking Enyo with native-javascript prototypes /…
arbales
  • 5,466
  • 4
  • 33
  • 40
0
votes
3 answers

Help with Javascript SQL INSERT

I have the following code which inserts a "task" into a table with a value for the "task". I am trying to modify this statement to insert multiple values into multiple columns, but I cant seem to get it to work since I am unfamiliar with the…
levi
  • 23,693
  • 18
  • 59
  • 73
0
votes
1 answer

How to hide left slider automatically in portrait view?

In my application I have two sliders (left 30% / right 70%); I want to hide my left slider in portrait view, when the user rotates his tablet. Is it possible? if yes then how? enyo.kind({ name: "dashboard", kind: enyo.VFlexBox, style:…
Ajay Patel
  • 5,298
  • 11
  • 55
  • 87
0
votes
2 answers

Reenabling document.execCommand("cut") in Google Chrome

Is there a way to re-enable the document.execCommand("cut") Javascript method call in Google Chrome? Palm's WebOS Enyo framework uses this is a few places, which means when I'm working on applications locally I can't access every API of the…
Alana Storm
  • 164,128
  • 91
  • 395
  • 599
0
votes
1 answer

AJAX Post Data Example problem

I don't know whether this is bug or my fault but I don't get this. If you are an AJAX expert then you may be able to answer this question without ENYO knowledge. in DATA Example of ENYO you can see AJAXGET and AJAXPOST method. Both of this method…
Ajay Patel
  • 5,298
  • 11
  • 55
  • 87
0
votes
2 answers

Problem Drag-able list items.[WebOS 3.0 ENYO]

i 'mstuck in one problem Drag-able list items.... i want to arrange my list with drag option I'm building an app that makes heavy use of lists and I can't seem to find any way to make list items re-orderable by drag and drop. Am I missing something…
Ajay Patel
  • 5,298
  • 11
  • 55
  • 87
0
votes
1 answer

Enyo.js/Javascript Event Handling

I am currently trying to create an Enyo.js Drag & Drop App. I am using the HTML5 Drag and Drop API natively. I keep coming across this error in my "ondragstart" handler. I know I am calling the event handler properly because I am calling the…
Nikki Rae
  • 1
  • 1
0
votes
1 answer

Enyojs add a loader effect for ajax call until successful response

I m new in enyojs. I have succesfully made an ajax call for listing data. What i need now is loader effect until data is loaded from ajax call. Any help is appreciated. Thanks in advance.
soulpower
  • 79
  • 1
  • 1
  • 9
0
votes
1 answer

Adding Custom Header Tags to an Enyo Project

I'd like to add some custom meta tags to my enyo project, such that they will be added to the index.html file generated when I run enyo pack. In older versions of enyo there was simply an index.html file that could be modified, but I have no idea…
Haravikk
  • 3,109
  • 1
  • 33
  • 46
0
votes
0 answers

Tizen's virtual IME keyboard disappears

I import an EnyoJS project for WebOS platform into Tizen Studio, then I ran it in a Samsung TV and there is this little problem: When I click on a text field the virtual keyboard shows up in the TV screen, then if I click on a letter the keyboard…
Gerardo Tarragona
  • 1,185
  • 4
  • 15
  • 28
0
votes
2 answers

WebOS onComplete event or analog

I want call onclick event after form loaded. I not found onCompletion Event or any analog something like : kind: someUI, onComplete: "Init"
AC1D
  • 248
  • 5
  • 16
0
votes
1 answer

WebOS 3.0 Access to UI from function

I cannot access to enyo Ui component from function:onComplete in WebOS 3.0. buttonTapped: function(inSender, inEvent) { console.log("Button is clicked"); this.$.txt.setContent(inSender.name + " tapped."); // This worked var request =…
AC1D
  • 248
  • 5
  • 16