Questions tagged [fuelux]

Fuel UX is a web UI library that extends Twitter Bootstrap with additional lightweight JavaScript controls.

More about Fuel UX

164 questions
0
votes
1 answer

how i can prevent reload sub folder of same parent FuelUX Tree

var DataSourceTree = function (options) { this.url = options.url; } DataSourceTree.prototype = { data: function (options, callback) { var self = this; …
0
votes
1 answer

FuelUX - Open datepicker calendar upward

What is the best way to open the datepicker calendar upwards? The default is to open downwards. I have changed the margin to a negative value on datepicker-calendar-wrapper class and it works fine, but wondering if theres any other way to do…
user3312508
  • 907
  • 4
  • 10
  • 25
0
votes
1 answer

Fuelux - setting restrictions after initializing datepicker

I am using fuelux date picker and I have two date pickers on a page. Basically a start date and an end date. What I want to do is initialize both at the beginning and then when the user select a start date then restrict the end date picker to only…
user3312508
  • 907
  • 4
  • 10
  • 25
0
votes
1 answer

Fuelux - Datepicker style not working properly

Im trying to use the fuelux datepicker but its style is not working as its shown in the documentation. What am I doing wrong here? JSfiddle I have the css loading for both bootstrap and fuelux in my code properly and the js is working too:
user3312508
  • 907
  • 4
  • 10
  • 25
0
votes
1 answer

Fuelux - how to use repeater

I am trying to use Fuelux repeater for one of my projects but I cant figure out how to populate data using javascript. The examples they have provided use couple of other plugins(Require.js and underscore.js) and I am not familiar with those. Can…
user3312508
  • 907
  • 4
  • 10
  • 25
0
votes
1 answer

Fuelux - How to populate repeater data using datasource

I am trying to use fuelux repeater for one of my projects but I kind of struggle on populating data into the table. I used the basic repeater template given on the docs but couldnt understand their example properly since its using a lot of other…
user3312508
  • 907
  • 4
  • 10
  • 25
0
votes
1 answer

fuelux 3 tree "DataSource is object not a function"

I want to make a tree with FuelUX 3/BootStrap 3 and a static datasource (just for testimonial). I've found more than one snippet on net but only in FuelUX version 2. I use Require.js AMD for include the libs and no errors from that. The only one…
Cybercraft
  • 54
  • 4
0
votes
2 answers

Fuelux, how to fix the width of a repeater column

Is it possible to fix the width of a specific Fuel UX repeater column? I'm trying to do this using the css-nth selector like this: .table thead tr th:nth-of-type(8), .table tbody tr td:nth-of-type(8) { background: red; width:10px; …
Nick
  • 13,493
  • 8
  • 51
  • 98
0
votes
1 answer

Fuelux Tree: How to filter items based on status checkboxes

I have successfully implemented the FuelUx tree control but I want the user to click a different status check mark (IE active or archived) and only display the child items in the tree that contain the selected status. Any suggestions on how to…
Greg Svitak
  • 485
  • 1
  • 6
  • 19
0
votes
0 answers

Error in displaying New line in Fuelux datagrid

I have created a dynamic datasource for Fuelux datagrid. I create it using Json.Parse('@Html.Raw(Model.datasource)') method. Where datasource contains list of objects to be displayed in the grid. But when the datasource contains a '\n'(or '\t' etc.)…
Rahul
  • 21
  • 2
0
votes
1 answer

Preload entire FuelUx tree in one ajax call

I am trying to use the FuelEx tree control. I do not want to load each node on the tree when the user selects the node. I would rather load the entire tree structure at the point the pages loads. I have a controller already built that builds the…
Greg Svitak
  • 485
  • 1
  • 6
  • 19
0
votes
1 answer

FuelUX Tree dataSource options undefined

I'm trying to implement a treeview using FuelUX. So far I managed to setup the example from the website:
dominik
  • 1,319
  • 13
  • 23
0
votes
1 answer

How to allow selection via icon on dropdown

I'm using fuelux with bootstrap to create some nice selections via drop downs. In the drop down I'm placing icons via font-awesome. I've managed to get the icons to render fine and when selected, the icon is included as selected. My problem is when…
Metalskin
  • 3,998
  • 5
  • 37
  • 61
0
votes
1 answer

Fuelux Datagrid Date Sorting

How can I sort a date format? Fuelux's Datagrid only sorts fields as strings... is there any workaround to accomplish sorting by date? American date format is: mm/dd/yyyy, in my case I need dd/mm/yyyy, so if I have 25/09/2014 and 11/10/2014, and try…
dan
  • 990
  • 1
  • 14
  • 22
0
votes
1 answer

How to set value of spinbox in fuelux scheduler

I am using scheduler from fuelux for my project, but I found some bugs. See the live demo for example: http://exacttarget.github.io/fuelux/javascript.html#scheduler If the user types in letters like 'abc' for repeat times or end after occurances, it…
sherry
  • 13
  • 4