Fuel UX is a web UI library that extends Twitter Bootstrap with additional lightweight JavaScript controls.
Questions tagged [fuelux]
164 questions
0
votes
1 answer
Getting id or name of folder in fuelux tree
I'm trying to get the id or name of the selected folder in a fuelux tree but couldnt manage to get it done.
My tree is a classic folder/file type tree and I want to be able to see the id of the folder when I click on a file.
this is my datasource…

Ege Bayrak
- 1,139
- 3
- 20
- 49
0
votes
1 answer
Overriding fuelux tree in tab order
I have need to override tab order (tabindex) value for the fuelux tree.
Page contents in order:
-Fuelux tree (with multiple items, and branched items as well)
-Component X
Now if I set any tabindex value (even max value 32767) to the component X,…

Spec
- 3
- 1
0
votes
1 answer
Multiple steps in fuelux wizard with form
I am using fuelux wizard component with 3 steps. On each step there are few inputs. I want to submit the inputs to controller at the end of step3. Should I use one form on each step or a single form spanned across all the steps? If one form for each…

rahulv21
- 187
- 2
- 3
- 15
0
votes
1 answer
How to access fuelux wizard form data?
I am using fuelux wizard with a form. I am submitting the form using javascript through finished.fu.wizard event. Is there any other/better way to submit the form? When I am trying to access the data in controller, I am getting nothing.
View…

rahulv21
- 187
- 2
- 3
- 15
0
votes
1 answer
Bootstrap datepicker and Fuel UX datepicker conflicting
I am trying to use the Fuel UX wizard control, along with Bootstrap. However, since I am using also Bootstrap's datepicker there seems to be a conflict involved in using the datepicker from one and the other library, since both define with…

medonja
- 308
- 3
- 15
0
votes
1 answer
Fuel UX 3: is element id required for initialization through Javascript?
I am new to Fuel UX and trying to make checkbox work. I have the following simple page:
Fuel UX 3

curious1
- 14,155
- 37
- 130
- 231
0
votes
1 answer
Retrieving the current step label from Fuelux Wizard
I am creating a fuelux wizard dynamically
My code is like this:
var CutRoadArray = [
['Location', '_Location'],
['Applicant Info', '_ApplicantInfo'],
['Details', '_ApplicationDetails'],
['Bond Info',…

w2olves
- 2,229
- 10
- 33
- 60
0
votes
1 answer
FuelUX ComboBox get value of "Other" option
I have a ComboBox using FuelUX, code as below:

Michael
- 4,282
- 9
- 55
- 89
0
votes
1 answer
Expand All Folders using fuel ux treeview
I´m using fuelux treeview to display a list , but I want expand all folders or nodes when page load.
I´m using fuelux.tree.min.js.
Below the code for load treeview:
$('#trvMembers').ace_tree({
dataSource: treeDataSource,
…

Gabriel Costa Alves
- 11
- 6
0
votes
2 answers
FuelUX tree: Default item/folder to selected on create
Does anyone know how to default a FuelUX tree item/folder to selected on create.
I know I can call tree.tree('selectItem', $('#' + node.id)) after the fact to select nodes, but it requires a lot more effort (especially with a large multi-leveled…

MasterCrafter
- 145
- 1
- 7
0
votes
1 answer
FuelUX Wizard How to disable specific steps?
In my web form I am using fuelux wizard (link: http://getfuelux.com/javascript.html#wizard ) and I have different roles of people coming to this page. What I need is to be able to "disable" certain steps of the wizard based on some data I obtain at…

dskoda1
- 109
- 10
0
votes
2 answers
How to restrict a dates of datepicker Fuelux?
How to restrict a dates of datepicker Fuelux???
I have a datepicker with several properties .
I need to restrict the first 20 days of January .
Is it ( 01-01-2015 Up 20-01-2015 ).
$('#myDatepicker1').datepicker('setCulture',…

Metalmacana
- 15
- 2
0
votes
1 answer
setting date of datepicker fuelux
I need to initialize or set a specific date in the datepicker of fuelux.
The DatePicker component works placing today's date by default , but I need set the first of January 2015 (for example "01-01-2015").
The Code…

Metalmacana
- 15
- 2
0
votes
2 answers
Add stripes to FuelUx Repeater (Data Grid)
Because fuelux is an extension of bootstrap, I first tried to add the 'table-striped' class to the table by targetting the table as a tag and I also tried grabbing the class of the table, which is…

BattlFrog
- 3,370
- 8
- 56
- 86
0
votes
1 answer
Get new value in Fuelux Spinbox change event
I'm using fuelux spinbox 3.7.3
According to the docs: http://getfuelux.com/javascript.html#spinbox we can handle the change event through "changed.fu.spinbox". This event fires with two arguments: event and value, being value the current value.
Is…

Javier
- 2,093
- 35
- 50