Tagged Questions
4
votes
0answers
1k views
ACE editor: create a new editor dynamically
I have a layout tab based where i can add and remove tabs, when i create a new tab i want to add a new istance of ACE editor (http://ace.ajax.org/) to it (i'm using jquery ui tabs) but so doesn't ...
3
votes
0answers
266 views
Backbone paginator not paginating my collection
define([
'underscore',
'backbone',
'models/shared_object',
'backbone_paginate'
], function(_, Backbone, Shared_Object){
"use strict";
var myCollection= Backbone.Collection.extend({
...
3
votes
0answers
699 views
Using JQueryUI accordion navigation:true w/base tag
I'm putting this here for anyone who may possibly have this problem with JQueryUI accordion widget. The markup used is a slight variation of the default markup in their demo:
<div ...
2
votes
0answers
48 views
How to assign attributes or functions to objects added after DOm ready with jquery
I am working in some personal project it is like the front-end of a chat. So i have my users and i have a JSON with the list of online and offline users. When the website firs load I also load ...
2
votes
0answers
60 views
Panels from jQuery Mobile
Is it possible to get the swipe function at http://view.jquerymobile.com/1.3.1/demos/examples/panels/panel-swipe-open.php#demo-page without formatting all the forms and other things which are included ...
2
votes
0answers
96 views
Controlling jQuery Cycle with jQuery UI slider widget?
I'm wondering whether there's an easy way to control an image slideshow that I have working with jQuery Cycle with a UI Slider widget.
Cycle code is:
$(window).load(function(){
$('.foo').cycle({
...
2
votes
0answers
64 views
jQuery Dialogs wont stay in container div when opened
I'm working with code to open multiple dialogs in a cascading fashion in a desktop type environment. The issue is keeping the dialogs from opening outside the container "#desktop" div. I have tried ...
2
votes
0answers
433 views
jQuery UI: Draggable Scroll Issue
I'm trying to build a draggable/droppable folder-file view with jQuery UI, but I'm running into a problem with, what I believe is attributed to the helper. Here is my code:
The HTML
<body>
...
2
votes
0answers
353 views
Jquery UI Draggable/Sortable without holding the mouse button
I was searching for the solution across the site, however did not find anything. I am facing a problem where I need to redo the style of dragging. I am using jquery ui for the draggable/sortable part. ...
2
votes
0answers
429 views
jQuery UI Tabs not hiding inactive tabs on load
I'm having a strange problem with jQuery tabs. The tabs are working fine, but the inactive panels are remaining visible on load, and it's only when selecting other tabs that they are hidden.
Here is ...
2
votes
0answers
427 views
Backbone.bootstrap-modal.js not working
I am following this fiddle http://jsfiddle.net/evilcelery/4XZMb/
$(function() {
//Use BootstrapModal for object List editor
Backbone.Form.editors.List.Modal.ModalAdapter = ...
2
votes
0answers
227 views
jQuery ComboGrid auto select
My question is, How do I disable the autoselect feature in combo grid. The use case scenario is like this. I have a list of projects and I want combogrid to autocomplete the project name for me when I ...
2
votes
0answers
167 views
jQuery Deferred and Dialog box
function ValidateField(){
var bAllow= true;
//some checking here
if (bAllow == true && apl.val().trim() == "")
{
showDialog();
showDialog().done(function() {
return ...
2
votes
0answers
415 views
jQuery Undo/Redo
I designed a web form that is used to design reports. Via this form I can add text, images, and I can also modify the properties of said elements such as the border, font-size, etc. Next I would like ...
2
votes
0answers
132 views
Using jQuery UI to slide content rather than fade?
First off, I want to apologize for not having a public demo and also being very new to jQuery.
There currently is in place a very basic jQuery "slider" script that fires a fadeIn for new content ...