Questions tagged [alloy-ui]

Alloy is a UI metaframework that provides a consistent and simple API for building web applications across all three levels of the browser: structure, style and behaviour.

Alloy UI is a user interface web application framework. It's purpose is to help make building and designing web applications an enjoyable experience.

Alloy UI is a javascript framework which is built upon the . This framework is extensively used by portal as the de-facto javascript & UI framework.

Current version of the library is Alloy UI v2.5.x.

What questions should have this tag?

  • questions which involve using any function or modules of alloy-ui
  • questions which involve using alloy-ui taglibs in liferay
  • questions which involve using alloy-ui modules/functions with liferay

Interesting links

236 questions
0
votes
2 answers

Is it possible to have custom connectors in AlloyUI

AlloyUI newbie here and I guess am having trouble with something very basic of the YUI framework. Am using AlloyUI 3.0.1, which still uses YUI and AngularJS. Question is: Is there a way to create custom connectors on a 'per-custom-node' basis in…
trishulpani
  • 744
  • 8
  • 20
0
votes
1 answer

In IE9 javascript not working, but after open console it work

I have written javascript by using Alloy UI and jquery it is working fine in firefox, chrome and IE 10,11 but IE 9 its not work. when I open console for debug it working fine.
Sanjeetjh
  • 31
  • 2
  • 13
0
votes
2 answers

how do i send file and data using alloy ui ajax call in liferay

I have following code snippet for ALLOY UI Script : AUI().use('aui-base','aui-io-request', function(A){ A.io.request('<%=submitJobApplicationByAjax%>',{ dataType: 'json', method: 'POST', …
Nisarg Pujara
  • 43
  • 1
  • 1
  • 10
0
votes
1 answer

Add class when scroll down with AlloyUI

I need to add a class when the user scroll down. I usually do this with jQuery: $(window).scroll(function() { var scroll = $(window).scrollTop(); if (scroll >= 10) { $(".dockbar").addClass("dockbar-opacity"); } }); How can I do the same…
Enrique
  • 95
  • 5
0
votes
1 answer

Loading a video inside a toggler through Alloy UI (Liferay 6.2)

I am trying to display a video player inside a modal window in Liferay 6.2 through Alloy UI, with no luck. I have a simple portlet with the following structure in view.jsp:
0
votes
0 answers

How to bypass aui-form-validation if 3 submit inputs exist in a form?

Essentially I have a form that has 3 input type=submit buttons (next, back and cancel). The problem is that all 3 buttons validate the form as they are all submit buttons, and I can't change their types. I can't use preventDefault as I always need…
Adorablepolak
  • 157
  • 4
  • 16
0
votes
1 answer

Liferay's Calendar : only select fields displayed

in my jsp I am creating Calendar like this : Calendar birthday = CalendarFactoryUtil.getCalendar(); and then displaying it like this : In the result, I have 3 select…
pzeszko
  • 1,989
  • 18
  • 29
0
votes
2 answers

Set date picker value equals null, in liferay alloy ui

i'm creating a date picker in liferay alloy-ui. This code displays as default the date at this moment, but i want to set it null, cause i want that the user sets it. i tried to not display the date as input ,but the value of it, didn't change. Below…
0
votes
1 answer

YUI thumb slider does not accept variables and expressions

I've working on a thumb slider using yui/alloyui. According to the UC, the min and max parameters in the slider should be passed dynamically which means that I cannot hardcode them in the script. Reviewing the specs, it says the slider min, max,…
Adorablepolak
  • 157
  • 4
  • 16
0
votes
1 answer

Liferay 6.2 Alloy UI Dropdown

Im trying to make this example work on my Liferay 6.2 installation: http://alloyui.com/tutorials/dropdown/ But for some reason is not working for me, i have added the code on my view.jsp file inside my portlet, this is the code: <%@ taglib…
Lowtrux
  • 156
  • 2
  • 12
  • 41
0
votes
1 answer

Is AlloyUI Form Builder Works For Liferay 6.0.5

Is AlloyUI Form Builder works for liferay 6.0.5. Because our site works on Liferay 6.0.5 and we can't update it with the latest version. I have placed the code mentioned in alloyui.com. I can drag and drop the fields but I can't submit the form.…
Revathi
  • 9
  • 3
0
votes
3 answers

How to deactivate functionality of a aui:checkbox label?

Iam creating checkboxes through a loop (see picture). <%for(String s : mSeriesIDs_cfg) { %> <%}…
jcomouth
  • 324
  • 3
  • 16
0
votes
1 answer

How to open/show CellEditor of Alloy Datatable manually?

I'm writing a code , so that I can change column's editor manually . I'm able to set editor event on double click event ('dblClick') . When I click on cell, effect is observe on next click . What is missing ? Or How can open/show editor manually…
Shantaram Tupe
  • 1,646
  • 3
  • 16
  • 42
0
votes
1 answer

Code inserting into database twice

I have the form
SASM
  • 1,292
  • 1
  • 22
  • 44
0
votes
1 answer

how to make jquery and AUI Script work in page which is response of an ajax request

var searchLatestNews = A.one('#searchLatestNews'); var paginator = searchLatestNews.one('.taglib-search-iterator-page-iterator-bottom'); if (searchLatestNews) { var parent = searchLatestNews; parent.plug( …