There seems to be several technology demos such as http://rails-primer.appspot.com/ on how to run Rails on App Engine. What would be the easiest way to run Rails on App Engine?
Hi
I'm having a problem trying to format the output on the jQuery UI datepicker.
I want the dateformat to be the 'ISO 8601' format, like explained here:
http://jqueryui.com/demos/datepicker/#date-formats
This is what my code looks like:
$.datepicker.setDefaults($.datepicker.regional['nl']);
$('.datepicker').datepicker('option', {dateFormat: 'yy-mm-dd' });
Can someone help and advice plz?
Thx in advance! I really trust this community for providing a quick and great answer! :)
Example:
http://jqueryui.com/demos/dialog/#modal-confirmation
The example shown allows you to view the source and even has a theme selector at the top right. But how do you apply a theme to your own code?
hello ..
i have the same code as wx Doodle pad in the wx demos
i added a tool to paste images from the clipboard to the pad.
using wx.DrawBitmap() function , but whenever i refresh the buffer .and call funtions ( drawSavedLines and drawSavedBitmap) it keeps putting bitmap above line no matter what i did
even if i called draw bitmap first and then draw lines .
is there anyway to put a line above the bitmap ?
please inform me if i miss anything
thanx in advance
Hi!
I'm using Grid with "Client Selection" (http://demos.telerik.com/aspnet-mvc-beta/grid/selectionclientside) of Telerik, and my page loads with one of the lines already marked. I wonder how it could activate the event OnRowSelected (on the marked line) when the page loads.
Thanks everyone!
I have seen demos of ComponentArt's and Telerik's toolsets.
I am interested mainly on finding a grid control, a tabstrip control, a menu control and a treeview control
Do you know any company besides the forementioned that offers ASP.NET MVC controls solutions?
Which one do you think is the best/most reliable?
I'm trying to create this slider
http://jqueryui.com/demos/slider/#rangemax
Is it possible to parametrize the max value?
For ex:
$("#slider-range-max").slider({
range: "max",
min: 1,
max: maxValue,
value: 2,
slide: function(event, ui) {
$("#amount").val(ui.value);
}
});
Is it possible to pass maxValue value, when I click on something? After its been initialized? Not on document ready function, but even after that?
I have being using this actionbarsherlok to give some nice style to my app. My doubt is that i can test ABS: fragment code, but i want to check out ABS: Demos code. Is it possible? i cant find it on .zip or web page, just the .apk
em i missing something?
in case we can not look that code, is there a good repository where they teach the way to implement the new tabs that android want us to use (3.0+++)?
Now that jQueryUI 1.8 is out, I was browsing through the updates and came across the new Button widget, and in particular one of the demos with the SplitButton with a dropdown. This demo seems to suggest that the Button widget could be used to create a dropdown menu here.
As a matter of discussion, I was wondering what ways there are to go about creating a dropdown menu with this new Button widget.
Cheers.
Hi All,
Please anyone help me to create a slider control like this: http://www.protofunc.com/scripts/jquery/jmediaelement/demos/simple-controls-h264.html.
Geetha.
I am toying with an application that will demo some Firefox 3.6 specific functionality, most of which are listed here: http://demos.hacks.mozilla.org/openweb/
I want to drag a zip file in the browser, unzip it, and work with the unzipped contents.
Are there any existing libraries that can do this? Does FireFox 3.6 in particular have something I can use? Or would I have to roll my own unzipper library?
For the record: http://github.com/augustl/js-unzip
I'm trying to create this slider
http://jqueryui.com/demos/slider/#rangemax
Is it possible to parametrize the max value?
For ex:
$("#slider-range-max").slider({
range: "max",
min: 1,
max: maxValue,
value: 2,
slide: function(event, ui) {
$("#amount").val(ui.value);
}
});
Is it possible to pass maxValue value, when I click on something ?After its been initialized? not on document ready function, after that?
Hello,
I've just discovered Sikuli, and would like to see a comprehensive functions list without digging through the online-examples and demos.
Has anyone found such a list?
Furthermore, apparently Sikuli supports more complex loops and function calls as well, and seems to be based in Python(!!). Examples would be great.
Thanks.
I am trying to create a flash header like element in JQuery, that has three images that fade to other images. I have each group of images in a div, but the divs line up vertically down the page, I want them to line up horizontally in a row.
Currently my css code is:
div#demos{
width:940px;
border:0;
}
.s1{
float:left;
display:inline;
background-color:#000000;
width:225px;
margin:0;
}
.s2{
float:right;
display:inline;
background-color:#000000;
width:225px;
margin:0;
}
.s3{
float:left;
display:inline;
background-color:#000000;
width:225px;
margin:0;
}
and my markup is:
<div id="demos">
<div id="s1" class="pics">
<img src="Image1.jpeg" width="200" height="200" />
<img src="Image2.jpeg" width="200" height="200" />
<img src="Image3.jpeg" width="200" height="200" />
</div>
<div id="s2" class="pics">
<img src="Image4.jpeg" width="200" height="200" />
<img src="Image5.jpeg" width="200" height="200" />
<img src="Image6.jpeg" width="200" height="200" />
</div>
<div id="s3" class="pics">
<img src="Image7.jpeg" width="200" height="200" />
<img src="Image8.jpeg" width="200" height="200" />
<img src="Image9.jpeg" width="200" height="200" />
</div>
<div style="clear:both"></div>
</div>
Hi,
I have a sortable list like this one: http://jqueryui.com/demos/sortable
Is it possible to get the start and end position of the element in the list, when it has been moved? I'm talking about their position number, in the list.
For example, if I move element 2 to position 5 in the list, I'd like to assign those two numbers to variables.
I'm new to jQuery - any help would be much appreciated.
Hello, i am trying to solve this problem:
i have a tab interface build with jquery.tools, more exactly i used the ajax tab to load external html files into div. you can see the example here: http://flowplayer.org/tools/demos/tabs/ajax.html
i am trying to use jquery to animated the elements loaded by ajax, do you know if and how is it possible?
i am trying both loading scripts outside, in the main page, or in the loaded page.
thanks a lot
Hi,
I want to be able to search a list of full names. The autocomplete demos I have seen have all searched from the beginning. Thats no good as I want matches on surname too.
I can live without full text search if it at least follows word boundaries. Sorta like the tag search here. Hows that done?
Cheers
This jQuery lets you constrain drag movement so it occurs only on the axis specified:
$("#draggable2").draggable({ axis: 'x' });
See: http://jqueryui.com/demos/draggable/#constrain-movement
This is not legal jQuery but I wish it were:
$("#Container").resizable({ minHeight: 150, containment: {axis:'y' } });
Is it possible to prevent the user from making #Container wider while allowing her to make it taller?
Thanks
Can anyone recommend some start to finish project tutorials that really emphasize good design principles and best practices. I am looking for things that demonstrate and emphasize any or all of these:
Domain Driven Design
Unit Testing
Inversion of Control
Separation of Concerns
Use of interfaces
Object Relational Mapping
Preferably ASP.NET MVC
I am currently watching the Autumn of Agile series, which demonstrates many of these principles. I would like to find more of these tutorials/demos.
i'm using this script http://jqueryui.com/demos/autocomplete/#default with database. i want to highlight typed words like this: www.docs.jquery.com/Plugins/Autocomplete. Please help me.
We are trying to implement jquery ketchup
demos.usejquery.com/ketchup-plugin/
and use required fields for the name, email and phone fields we have included all the markup and I think I have it setup properly but the form fields are not validating...
You can see my sample here... thx for any assistance I have been staring at this for hours...
http://c5.dealercontrol.net/service/service-appointment/
I am trying to give the DOJO framework a test spin but some how the latest release does not work at all ( 1.4.2)
I keep getting a "console[_8]" [undefined] is not an object error.
this is on the demos as well
1.3.3 works fine it seems ( or at least i dont get that error so far)
any ideas?
I have been using jquery for a while and love it , just looking for something better i guess. does anyone recommend DOJO?
thanks
I've been looking all over the place, but I haven't landed an answer yet. Is the current jQuery UI 1.8-1.8.2 supports Firefox 3+? I have 3.6.3 installed, but the example on their websites works for my IE7, IE8, Chrome, but not Firefox.
http://jqueryui.com/demos/sortable/#connect-lists
This page work in Firefox but not in IE7
http://www.robwalshonline.com/demos/randomImageDemo/randomImage_plugin.html
This is page of plugin http://www.robwalshonline.com/posts/jquery-plugin-random-image-on-page-load/
How to get this work in all browser FF, safari, chrome and IE 6, 7 ,8
It is my first time building an android app. Was wondering firstly, if there are demos that exists which could help me to build a media tag editor (form to edit mp3 files).
I would also like to know how to populate the sd card on the emulator.
Any help on android would be good. Thanks all!