[jQuery] Prev and next navigation
I am trying to a setup a jquery based navigation for my photo gallery i.e something like facebook using hash url technique. I am using php and mysql in the backend. Is there any example I could look at for implementing it. The reason for using hash urls is that I would like to have an unique url for every pic. -- Sent from my mobile device Anush, Team Gluster, http://gluster.com
[jQuery] Re: Powerfull WYSIWYG editor with upload image capability
On Sun, Sep 20, 2009 at 11:29 AM, David D wrote: > You don't need to use ckfinker. Ckeditor 3 just needs an upload and a > browse url. You can make them in your prefered language. > > This one looks good too http://github.com/zilenCe/mootools-filemanager ( works with TinyMCE ) - Anush
[jQuery] Re: Powerfull WYSIWYG editor with upload image capability
On Sat, Sep 19, 2009 at 11:17 PM, morwo wrote: > > On Sep 18, 4:54 pm, Rama Vadakattu wrote: >> Can any one please recommend a powerful WYSIWYG (commercial/open >> source) editor which has a image upload capability. > > What about TinyMCE? It seems good and I think it's easy to install new > (even your own) plugins :) > > http://tinymce.moxiecode.com/ > I have been trying it too. It is good but doesn't have image upload feature from the local system. I have been looking at various 3rd party plugins, but haven't had much success. Since I am using PHP, I tried setting up this http://sourceforge.net/tracker/index.php?func=detail&aid=2844769&group_id=103281&atid=738747 for image upload but it isn't working for me - Anush
[jQuery] Re: Jquery gradient and tabs
On Tue, Sep 15, 2009 at 5:55 PM, MiKiTiE wrote: > > Having checked the source code, it looks like you're not even > including the core and tabs ui. > > For example: > > http://jqueryui.com/latest/ui/</a> > ui.core.js"> > http://jqueryui.com/latest/ui/</a> > ui.tabs.js"> > > If you were to link direct to jquery. That may be why your tabs are > not working properly. > No, its not that. I am using this technique http://blueprintcss.org/demos/tabs.html This doesn't need ui.core.js and ui.tabs.js - Anush
[jQuery] Re: Jquery gradient and tabs
On Sep 14, 3:58 pm, MiKiTiE wrote: > Could you provide a link? > > http://wildindia.org/mwtest/grad.php If you see the there, the Tab #2 is inactive. - Anush
[jQuery] Jquery gradient and tabs
When I try using jquery gradient plugin with tabs, I see that the tabs get disabled. Does anybody here know the reason behind it ? -- Anush
[jQuery] Converting rows into columns
I am displaying a few fields in a table as below field1 field2 field3 field4 field5 I have a link to append a new table with the same fields. What I would like to do is when I click on "Append new table" link, I would like to convert all the existing fields in the table in a single row instead of displaying them by columns. Can somebody give me some inputs on how I could go about implementing it - Anush
[jQuery] Handling forms in tabs
Hi, I have a form with the same structure being loaded in 3 tabs. Now during validation, I will have issues with the IDs of the form fields. Now is it possible to disable the forms in tab 1 and tab 3 when tab 2 is clicked. - Anush
[jQuery] Thickbox and autosuggest
I am trying to use the thickbox plugin with the result function of the autosuggest plugin and haven't had any success with that $("#addCurrentLocation").result(function(event, data, formatted) { document.getElementById("prev_sightings").innerHTML = "View Location Info"; }); Basically, I pick up the "id" from the result function off the autosuggest and am generating a url. Now I would like the URL to open in a thickbox which isn't working. Can somebody help me with this. - Anush
[jQuery] Re: Google Maps inside jqModal
On Tue, Aug 4, 2009 at 9:23 PM, Liam Potter wrote: > > can you post an example? > > > anush wrote: > >> Has anybody tried embedding Google Maps inside jqModal ? >> >> The maps aren't getting displayed properly. >> >> $().ready(function() { >>$('#dialog').jqm(); >> }); >> > http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";> http://www.w3.org/1999/xhtml"; xmlns:v="urn:schemas-microsoft-com:vml"> Google Maps JavaScript API Example: Simple Map http://maps.google.com/maps?file=api&v=2&sensor=false&key=ABQIzr2EBOXUKnm_jVnk0OJI7xSosDVG8KKPE1-m51RBrvYughuyMxQ-i1QfUnH94QxWIa6N4U6MouMmBA"</a>; type="text/javascript"> $().ready(function() { $('#dialog').jqm(); }); function initialize() { if (GBrowserIsCompatible()) { var map = new GMap2(document.getElementById("map_canvas")); map.setCenter(new GLatLng(37.4419, -122.1419), 13); map.setUIToDefault(); } } Close
[jQuery] Re: Google Maps inside jqModal
On Tue, Aug 4, 2009 at 10:49 PM, Paulodemoc wrote: > > What are the problems with the maps? > Only a part of the map is visible. Rest of it is grey .. the map tiles aren't loading
[jQuery] Google Maps inside jqModal
Has anybody tried embedding Google Maps inside jqModal ? The maps aren't getting displayed properly. $().ready(function() { $('#dialog').jqm(); }); Would be great of somebody could help me out
[jQuery] jquery autocomplete parameter query
When I use mustMatch: true in my function, I am unable to select a few of the options. Any reason for that ? - Anush
[jQuery] Re: URL redirect
On Thu, Jul 30, 2009 at 9:26 PM, waseem sabjee wrote: > var url = "?car.php?id=53"; > top.location = url; > Thanks. Got it - Anush
[jQuery] URL redirect
Hi, I have an input text field with city names which uses the jquery autocomplete plugin. Now I would like to redirect the page when a city is selected. Can you anybody tell me how I could go about doing it. $().ready(function() { $('#cities').autocomplete(".autocomplete.php", { width: 260, selectFirst: false, matchSubset :0, }); });
[jQuery] Validating autosuggest output
I have a form with a location field. The selection of the location value happens through the autosuggest box. When I choose the location, I also show the location information below the field using the show/ hide feature. If the user is choosing the location via dropdown, I have no issues. But if the user doesn't find the location in the dropdown, I want him to add his location to the db. . Do I need to validate the value once again with a script and display the message to add a new location. Or is there any better way of doing it thanks. Anush
[jQuery] highlight errors
Is it possible to highlight all the text boxes in a from even if there is an error in just one of the boxes whbile validating ?
[jQuery] Validating a group of elements together
Is it possible to validate all the elements defined in a group together ? groups{ x: "a1 b1 c1" } I would like to validate a1, b1, c1 and display the error message until all the elements in a group become valid. - Anush
[jQuery] group validation error highlighting
I have a form where I am validating IP address. I am using 4 different textboxes limiting the characters to 3 in each one of them. I am checking the range from 0-255 for each of them using Validate plugin. Now to display a single error message instead of displaying an error message for each of the boxes, I am using the errorPlacement function and display it after the last field. But suppose I correct any one of the fields , it validates that box and the error message disappears. I used the unhighlight function to keep the message but haven't been able to get the highlight function working. Can anybody tell me how I could go about fixing it.
[jQuery] jquery Validate
Hello, I am using the validate plugin and displaying the errors using grouping technique. Works fine, and I get a single error message at the end of it. text: "text1 text2 text3 text4" }, errorPlacement: function(error, element) { if (element.attr("name") == "text1" || element.attr("name") == "text2" || element.attr("name") == "text3" || element.attr("name") == "text4" ) { error.insertAfter("#text4"); } else error.insertAfter(element); } text1,text2,text3,text4 are 4 text boxes. Now, when I go and edit a text box with error, the error message for others disappear too. Can anybody tell me how I could go about it.
[jQuery] Dialog over fisheye
Hi, I have a fisheye interface, and onclick I am trying to load a remote url on a modal dialog. The remote url works without any javascript in it, but when I include js files.. it doesn't work. I want to load a calendar in the modal. Can anyone here please help me out. - Anush