[jQuery] Prev and next navigation

2009-09-24 Thread Anush Shetty

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

2009-09-20 Thread Anush Shetty
On Sun, Sep 20, 2009 at 11:29 AM, David D dlinc...@gmail.com 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

2009-09-19 Thread Anush Shetty

On Sat, Sep 19, 2009 at 11:17 PM, morwo lukaszewsk...@gmail.com wrote:

 On Sep 18, 4:54 pm, Rama Vadakattu rama.vadaka...@gmail.com 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=detailaid=2844769group_id=103281atid=738747
for image upload but it isn't working for me

-
Anush


[jQuery] Re: Jquery gradient and tabs

2009-09-15 Thread Anush Shetty

On Tue, Sep 15, 2009 at 5:55 PM, MiKiTiE mikiji...@googlemail.com wrote:

 Having checked the source code, it looks like you're not even
 including the core and tabs ui.

 For example:

 script type=text/javascript src=http://jqueryui.com/latest/ui/
 ui.core.js/script
 script type=text/javascript src=http://jqueryui.com/latest/ui/
 ui.tabs.js/script

 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] Jquery gradient and tabs

2009-09-13 Thread Anush Shetty

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

2009-08-25 Thread Anush Shetty

I am displaying a few fields in a table as below

table
  trtdfield1/td/tr
  trtdfield2/td/tr
   trtdfield3/td/tr
trtdfield4/td/tr
trtdfield5/td/tr
/table

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] Thickbox and autosuggest

2009-08-18 Thread Anush Shetty
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 = a
href='locationinfo.php?id= + data[1] + ' title='add a caption to title
attribute / or leave blank' class='thickbox' View Location Info/a;

  });

div id=prev_sightings/div

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

2009-08-04 Thread Anush Shetty

On Tue, Aug 4, 2009 at 10:49 PM, Paulodemocpaulode...@gmail.com 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] Re: Google Maps inside jqModal

2009-08-04 Thread Anush Shetty
On Tue, Aug 4, 2009 at 9:23 PM, Liam Potter radioactiv...@gmail.com 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();
 });




!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN
http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd;
html xmlns=http://www.w3.org/1999/xhtml;
xmlns:v=urn:schemas-microsoft-com:vml
  head
meta http-equiv=content-type content=text/html; charset=utf-8/
titleGoogle Maps JavaScript API Example: Simple Map/title
script 
src=http://maps.google.com/maps?file=apiamp;v=2amp;sensor=falseamp;key=ABQIzr2EBOXUKnm_jVnk0OJI7xSosDVG8KKPE1-m51RBrvYughuyMxQ-i1QfUnH94QxWIa6N4U6MouMmBA;
type=text/javascript/script
script 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();
  }
}

/script
  /head

  body onload=initialize() onunload=GUnload()

   div class=jqmWindow id=dialog style=width:800px

a href=# class=jqmCloseClose/a


div id=map_canvas style=width: 500px; height: 300px/div


/div

  /body
/html


[jQuery] Re: URL redirect

2009-07-30 Thread Anush Shetty
On Thu, Jul 30, 2009 at 9:26 PM, waseem sabjee waseemsab...@gmail.comwrote:

 var url = ?car.php?id=53;
 top.location = url;


Thanks. Got it

-
Anush