[jQuery] Playing with jquery animate

2009-09-28 Thread Armand Datema
Hi

Been playing a bit with jquey animate, here is a sample of an animated
header im working on for portfolio section of my upcoming site.

http://www.todnn.com/pixelani/portfolio.htm


-- 
Armand Datema
CTO SchwingSoft


[jQuery] animation, how do I do this ( library plugin ) ?

2009-09-17 Thread Armand Datema
Hi

I would like to do the following

I have a big header image and on there specific places i want to have a few
easing bouncing images that bounce a few times and then they stay n place
and optionally it would be nice if I could repeat this after a specified
amount of time


so om my header image on specific places i would have an image


imgimg
img img

after page is loaded  i would liek these images to bounce a few times
startting with image1, that one finished then image 2 and so on.


Preferable i would liek to have this repeated again after a sppecific amount
of time.

Is ther a plugin or animatin library / function that I could use to
accomplish this?

Thanks in advance

Armand


[jQuery] How to go about writing a plugin that extends a core plugin like sortable

2009-06-10 Thread Armand Datema
Hi

I would like to turn my code for http://www.2dnn.com/DragnDrop.aspx into a
plugin. Right now its just standard coding and .sortable.

So lets say i would like my plugin to have the name of igoogle and extend
sortable

Is there a good example somewhere or can someone paste some code here so I
can go from there

thanks in advance

Armand


[jQuery] Re: How to know if div opened or closed

2009-06-09 Thread Armand Datema
Here is part of the code we use to set a min or max image on the collapsed
pane ( check the display property of your element

var visibility = jQuery(this).css('display');

if (visibility == none) {
$image.attr('src', pageurl+max.png);
} else {
$image.attr('src', pageurl+min.png);
}

On Tue, Jun 9, 2009 at 12:34 PM, tij_dev tijmas...@googlemail.com wrote:


 Hello everybody !!!

 I'm opening and closing a div and I would like to know if at a precise
 moment this div is opened or closed.
 Something like : $(div).isOpened() = true

 Thanks in advance




-- 
Armand Datema
CTO SchwingSoft


[jQuery] Re: same effect on multiple objects with same id

2009-06-09 Thread Armand Datema
Hi

you cannot have multiple ids ids are unique you need to use a class name
instead

.
img src=button.jpg alt=button  border=0 id=myButton
class=hoverbutton/
end loop

So only this loops and i only need the code below once.

$(document).ready(function(){
$(img.hoverbutton).hover(
 function () {
   $(this).fadeTo('fast', .50);
 },
 function () {
   $(this).fadeTo('fast', 1.0);
 }
   );
});




On Tue, Jun 9, 2009 at 12:56 PM, simon si...@uvfx.tv wrote:


 I basically have several buttons that are created dynamically via a
 db, so I can have 1 to 40 etc.
 now at the moment I give each one a unique id and a hover code in the
 loops. see below:

 loops goes here..

 img src=button.jpg alt=button  border=0 id=myButton?=
 $newCode ? /
 $(document).ready(function(){

 $(#myButton?=$newCode ?).hover(
  function () {
$(this).fadeTo('fast', .50);
  },
  function () {
$(this).fadeTo('fast', 1.0);
  }
);
 });

 end loop

 this works fine but gives me a lot of jquery code as well for each as
 i also have a click action after it, but thats another matter, what i
 am after is if i just give it the same id as below  then i would like
 only to have one hover code that would do the effect to all, but at mo
 it will only do the effect to the first, any ideas?

 loops goes here..
 img src=button.jpg alt=button  border=0 id=myButton/
 end loop

 So only this loops and i only need the code below once.

 $(document).ready(function(){
 $(#myButton).hover(
  function () {
$(this).fadeTo('fast', .50);
  },
  function () {
$(this).fadeTo('fast', 1.0);
  }
);
 });


 Many thanks Si




-- 
Armand Datema
CTO SchwingSoft


[jQuery] Re: Remove links but not images

2009-06-09 Thread Armand Datema
mm i dont know if this is the best way but you could try

$(ul a#click).onclick = function() { return false; }


and then on that link you set a style class with the standard cursor

Its  a workaround but it works


On Tue, Jun 9, 2009 at 2:13 PM, alex alex_bille...@hotmail.com wrote:


 Hi folks

 This has me stumped. I have a list of images and I want to remove the
 links but retain the images.

 So this

 ul
 lia href=fooimg src=path/to/image1 //a/li
 lia href=fooimg src=path/to/image2 //a/li
 etc etc
 /ul

 Becomes this

 ul
 liimg src=path/to/image1 //li
 liimg src=path/to/image2 //li
 /ul

 Using this

 $('ul a').remove();


 does not work as it also removes the images as well.

 Any help would be much appreciated. Thanks in advance.

 Alex




-- 
Armand Datema
CTO SchwingSoft


[jQuery] Re: How can I move a div around the screen like iGoogle?

2009-06-08 Thread Armand Datema
You can start with the sortable demo on jqueryui and go from there

 http://jqueryui.com/demos/sortable/#portlets

we used it as a starting point for this:


http://www.2dnn.com/DragnDrop.aspx

Armand

On Mon, Jun 8, 2009 at 1:04 PM, marcello marcello.man...@gmail.com wrote:


 Hello everyone!! I'm new here!!! I'm starting to know how many
 advantages has JQuery for developers.

 I'm trying some experiments, and the other day I saw the iGoogle
 interface, where users can move the gadgets around the screen, and
 this stuff liked me very much. That's why I want to ask to the
 community if anybody knows if there is some plugin or library in
 JQuery to do the same effects and allows the programmer to move a div
 from one point of the screen to another one and fix it.

 Thank you!!

 Cheers!!




-- 
Armand Datema
CTO SchwingSoft


[jQuery] drag and drop portlet system based on DotNetNuke

2009-06-06 Thread Armand Datema
Hi

Just wanna show of our portal system based on DotNetNuke jQuery and jQueryUI

We took the sortable example and modified it with

up down movement animation
slide into place
smooth animation
drag to delete and click to delete
restore functionality

Inspiration was the bbc.co.uk
site

http://www.2dnn.com/DragnDrop/tabid/128/Default.aspx


[jQuery] drag and drop portlet system based on DotNetNuke

2009-06-05 Thread Armand Datema
Hi

Just wanna show of our portal system based on DotNetNuke jQuery and jQueryUI

We took the sortable example and modified it with

up down movement animation
slide into place
smooth animation
drag to delete and click to delete
restore functionality

Inspiration was the bbc.co.uk site

http://www.2dnn.com/DragnDrop/tabid/128/Default.aspx

Armand Datema
CTO SchwingSoft


[jQuery] Re: drag and drop portlet system based on DotNetNuke

2009-06-05 Thread Armand Datema
ok just joined and posted there

Armand

On Fri, Jun 5, 2009 at 7:48 PM, Richard D. Worth rdwo...@gmail.com wrote:

 This is great. Would you mind posting here as well?

 http://groups.google.com/group/jquery-ui

 Thanks.

 - Richard


 On Fri, Jun 5, 2009 at 1:23 PM, Armand Datema nok...@gmail.com wrote:

 Hi

 Just wanna show of our portal system based on DotNetNuke jQuery and
 jQueryUI

 We took the sortable example and modified it with

 up down movement animation
 slide into place
 smooth animation
 drag to delete and click to delete
 restore functionality

 Inspiration was the bbc.co.uk site

 http://www.2dnn.com/DragnDrop/tabid/128/Default.aspx

 Armand Datema
 CTO SchwingSoft





-- 
Armand Datema
CTO SchwingSoft


[jQuery] what plugin ca do this

2009-05-16 Thread Armand Datema
HI

http://www.bbc.co.uk/

I am looking for a module that can do image and title bars mouseover, so
hver over the linek and the phot changes. I remember seeing it womewehre
just dont know what its called anymore

Armand


[jQuery] jqueryui themes and suckerfish or another nlevel menu

2009-03-19 Thread Armand Datema
Hi

Does a suckerfish menu based on jqueryui thems excist allready or is there
another menu that has these css classes implemented yet?

Armand


[jQuery] Re: Superfish Menu Using Images

2009-02-27 Thread Armand Datema
Hi

I dont know about 2 levels but ehre is a one level unordered list iamge menu
example

http://www.2strokebritishchampionship.co.uk/Home/tabid/36/Default.aspx

i have on menu and all items have the same background image but onmouseover
you change the background position

On Fri, Feb 27, 2009 at 8:57 AM, dave da...@omegadm.co.uk wrote:


 Hi

 I was wondering if it were possible to replace the text links used
 here http://users.tpg.com.au/j_birch/plugins/superfish/#examples

 With rollover graphics, for both the top level navigation and the
 submenu navigation, or can anyone lead me to examples of what I am
 trying to acheive where I need to use graphics for the naviagtion.

 Hope someone can help!

 Thanks




-- 
Armand Datema
CTO SchwingSoft


[jQuery] Does a plugin like this excist allready

2009-02-26 Thread Armand Datema
Hi

I am looking for a plugin with same functionality as http://www.bbc.co.uk/

notice the + - and when clicked it expands or contracts one.

Before we start on this, is such a plugin or code allready avaiable that I
missed

thanks

Armand


[jQuery] [validate] Translator plugin traverse

2009-02-17 Thread Armand Datema
HI

I would liek to use the translater plugin to do a search and replace in my
document.

I have sometext  like

[p]paragraph and [/p]


Now I would like to repalce this with an injected html block between real
paragraphs.  a simpel search and repalce only displays the html as textand i
need the html as html

What would be the best way to accomplish this


[jQuery] what could be causing this isnull error ( realy weird )

2009-02-09 Thread Armand Datema
Hi

http://www.howardsplaza.nl

If you go to this page in firebug you see an isnull error.

the same goes if you click the test click link.

Why does this generate the isnull error. The fist one is indeed only on page
after user is logged in but that should not be an issue . But the text
click link tries to hide a few div with classes that are actually one the
page

any help would be appreciated since it appears i must be overlooking
somthing


[jQuery] Re: what could be causing this isnull error ( realy weird )

2009-02-09 Thread Armand Datema
HI

Well it cant be more simple than this it just tries to get the element with
the class .grid-8 which is on the page for sure

On Mon, Feb 9, 2009 at 1:06 PM, Mohd.Tareq tareq.m...@gmail.com wrote:

 Hi,

 May be its not able get the value for ur function ($(.grid_8) );
 declare it on top of ur method .

 See this hope sol this will work

 regards

 Ragx


 On Mon, Feb 9, 2009 at 5:30 PM, Armand Datema nok...@gmail.com wrote:

 Hi

 http://www.howardsplaza.nl

 If you go to this page in firebug you see an isnull error.

 the same goes if you click the test click link.

 Why does this generate the isnull error. The fist one is indeed only on
 page after user is logged in but that should not be an issue . But the text
 click link tries to hide a few div with classes that are actually one the
 page

 any help would be appreciated since it appears i must be overlooking
 somthing




 --
 ---| Regard |---

 Mohd.Tareque




-- 
Armand Datema
CTO SchwingSoft


[jQuery] Re: what could be causing this isnull error ( realy weird )

2009-02-09 Thread Armand Datema
so you dont get the other errors?

i dont get this error i will look at it. All im interested in is why i get
the isnull errors because these just are not null they do excist and if they
dont excist that they should just be skipped. So there must be something
else generating the error and That I cannot find out

On Mon, Feb 9, 2009 at 1:34 PM, Stephan Veigl stephan.ve...@gmail.comwrote:


 Hi,

 I got an error in line 267 because of the quote;s in the javascript
 function. Try to replace it with single quotes.

 input type=submit name=dnn$ctr579$Login$Login_DNN$cmdLogin
 value=Inloggen onclick=javascript:WebForm_DoPostBackWithOptions(new
 WebForm_PostBackOptions('dnn$ctr579$Login$Login_DNN$cmdLogin', '',
 true, '', '', false, false)) id=dnn_ctr579_Login_Login_DNN_cmdLogin
 class=StandardButton /


 by(e)
 Stephan

 2009/2/9 Armand Datema nok...@gmail.com:
  HI
 
  Well it cant be more simple than this it just tries to get the element
 with
  the class .grid-8 which is on the page for sure
 
  On Mon, Feb 9, 2009 at 1:06 PM, Mohd.Tareq tareq.m...@gmail.com wrote:
 
  Hi,
 
  May be its not able get the value for ur function ($(.grid_8) );
  declare it on top of ur method .
 
  See this hope sol this will work
 
  regards
 
  Ragx
 
  On Mon, Feb 9, 2009 at 5:30 PM, Armand Datema nok...@gmail.com wrote:
 
  Hi
 
  http://www.howardsplaza.nl
 
  If you go to this page in firebug you see an isnull error.
 
  the same goes if you click the test click link.
 
  Why does this generate the isnull error. The fist one is indeed only on
  page after user is logged in but that should not be an issue . But the
 text
  click link tries to hide a few div with classes that are actually one
 the
  page
 
  any help would be appreciated since it appears i must be overlooking
  somthing
 
 
 
  --
  ---| Regard |---
 
  Mohd.Tareque
 
 
 
  --
  Armand Datema
  CTO SchwingSoft
 




-- 
Armand Datema
CTO SchwingSoft


[jQuery] Re: Does jQuery support the postback?

2009-01-18 Thread Armand Datema
Hi

Can you explain this a bit more

DO you want to resort the items after an asp.net postback  or do you want to
pas the sorting back to asp.net backend code

On Sun, Jan 18, 2009 at 1:04 PM, Mostafa Absy wmosta...@gmail.com wrote:


 Dears,

 what about postback?

 for example, in sorting feature of jQuery, if the end user changed the
 items using jQuery and the he posted back the aspx page, can i handle
 the new order in the server?




-- 
Armand Datema
CTO SchwingSoft


[jQuery] Re: Webdeveloper to WebDeveloper

2008-12-07 Thread Armand Datema
Hi

Well what you are doing is not legal  ( you are allowed to summarize an
article on your page and then link to the original article but not copy the
whole content and link to the original article if you dont have the
permission of each of the sites or article owners, that is not done

the original authors spend time making these articles and you are ripping
the whole content ( altho you link to the site you can read the full
alrticle on yours so you are nenefiting from the original authors hard work
since people read it on your site

On Sat, Dec 6, 2008 at 3:43 AM, Pedram [EMAIL PROTECTED] wrote:


 Dear folk ,
 If you're interested on web development Articles which is updated and
 has lots of new information.(Web developer to web developer)
  I have just started a Blog which contains
 (jQuery ,Css,html,Php,Mysql,json,Ajax) take a look at it
 http://www.pedramdev.com , this Blog gets the best articles out of the
 web and also at the end of the week it has some conclusions enjoy it .
 If any one is interested please let me know . [EMAIL PROTECTED] .

 Sincerely Pedram .


[jQuery] Re: has anyone come across a plugin like this ?

2008-11-23 Thread Armand Datema
Very nice

This will come in very handy on the portals that have too many levels or too
long names ( like medical portals )

@question below

You will need to build your own code to make the breadcrumb. This is not a
breadcrum generation plugin that follows the pages you are onbut a
breadcrumb styling plugin

It applies the effects to an allready excisting breadcrumb you build using
php .net whatever

On Sun, Nov 23, 2008 at 9:42 AM, yvonney [EMAIL PROTECTED] wrote:


 yes, hehehe ... at some point I'll be trying to figure out how to get
 Jason's very cool breadCrumb plug to link (i guess) to the main
 menu...
 It'll be easy once we know how... I'm puzzled about this right now
 though

 Any thoughts, tips, um. examples welcomed...obviously--)

 On Nov 21, 9:28 pm, Rick Faircloth [EMAIL PROTECTED] wrote:
  Jason...
 
  I'm not sure I understand what your plug-in is for.
  When you say it's a breadcrumb plugin, I thought you meant
  it would show a site visitor the trail of pages visited.
 
  I'm not quite sure I know how to set this up.  I created actual
  pages from your demo...biocompate.html, kits_assays.html, etc.,
  so there would be actual pages to visit, but the order the
  breakcrumbs never changes, but stays in the order of the
  list of pages in breadcrumb0, the id of the div in which I changed the
  links.
 
  A little help for the clueless?
 




-- 
Armand Datema
CTO SchwingSoft


[jQuery] Re: asp.net and jquery - reactions to this letter

2008-11-18 Thread Armand Datema
mm Ive notices some clashes with asp.net but there is plenty info around (
from some of the top .net guys that realy take Jquery and asp.net combo to
the edge.) how to make it deal wit this much better. Problem is that a lot
of the ajax is hardwired into .net and therefore jquery alternatives take a
bit more time but after that its much cleaner and easier to modify.

He does have a point wit the debugging but I dont see that as such a big
point, if you combine the .net debugging and firebug you can pretty much
almost pinpoint your errors.

If you are not realy stuck too much into the .net toolkit and dare to step
outside of the bounds a bit Jquery in teh end will only save time



On Tue, Nov 18, 2008 at 10:52 PM, rolfsf [EMAIL PROTECTED] wrote:


 A friend had sent this rant in to microsoft, regarding jquery, which
 is published on their developer site. Not being an asp.net developer,
 I don't know what to make of his points. I'd be interested to hear
 from some asp.net developers who have embraced jquery - is it truly a
 monster?

 http://reddevnews.com/response/response.aspx?rdnid=1189

 Thanks!




-- 
Armand Datema
CTO SchwingSoft


[jQuery] Re: SerialScroll navigation modification question

2008-10-15 Thread Armand Datema
FYI

this functionality also works great with the pagination plagin you only need
to modify it a bit

the pagination plugin returns a span for the first item, this needs to be
changed to a standard link

var lnk = $(a class='active'+(appendopts.text)+/a)

and because the click handler is handled by the serialscroll plugin you need
to delete that from the pagination plugin as well

//.bind(click, getClickHandler(page_id))


so in my case i first call the pagination plgin to create a nr of links
based on the nr of items in my news dataset , adn then i call the
serialscroll to make this into a scroller and attach the navigation to the
before created paging links

Armand




On Tue, Oct 14, 2008 at 2:59 PM, Ariel Flesler [EMAIL PROTECTED] wrote:


 Nope, I thought I had a snippet for this on the Doctorate on...
 post, it seems I forgot to add this one.

 Will do as soon as I can.

 --
 Ariel Flesler
 http://flesler.blogspot.com

 On Oct 14, 6:13 am, Armand Datema [EMAIL PROTECTED] wrote:
  Thanks thats about how I solved it also just wanted to check if somehow
 this
  was allready included int he plugin and I missed it
 
  Armand
 
 
 
  On Fri, Oct 10, 2008 at 10:33 PM, Ariel Flesler [EMAIL PROTECTED]
 wrote:
 
   You have 2 options.
 
   - Binding externally:
   var $links = $('#navigation a').click(function(){
  $links.removeClass('selected');
  $(this).addClass('selected');
   });
 
   - Using the onBefore callback.
 
   I think the first one is simple and safe. I'd go for that.
 
   Cheers
 
   --
   Ariel Flesler
  http://flesler.blogspot.com
 
   On Oct 9, 8:37 am, Armand Datema [EMAIL PROTECTED] wrote:
Hi
 
I am using the serialscroll on my site to page through a news
 resultset.
   I
am using the naviagation option that automatically turns a given list
   into
the naviagation for this scroller.
 
However I would like to have the link in the ul have a new class when
 its
clicked so I can style this differently, whats the best way to do
 this.
 
thanks in advance
 
Armand
 
  --
  Armand Datema
  CTO SchwingSoft




-- 
Armand Datema
CTO SchwingSoft


[jQuery] what is the best way to do this

2008-10-15 Thread Armand Datema
Hi

I use jquery to filter a dataset based on classes. Each item has a class of
the profile that news item is in so lets say

div class=profile1   div class=profile2  div class=profile3



nof in a forum i check checkbox for profile 1 and 3 and now i need to have
have the classes with profile 1 and 3 set to a new class

whats the best way to go about his.


[jQuery] Re: SerialScroll navigation modification question

2008-10-14 Thread Armand Datema
Thanks thats about how I solved it also just wanted to check if somehow this
was allready included int he plugin and I missed it

Armand

On Fri, Oct 10, 2008 at 10:33 PM, Ariel Flesler [EMAIL PROTECTED] wrote:


 You have 2 options.

 - Binding externally:
 var $links = $('#navigation a').click(function(){
$links.removeClass('selected');
$(this).addClass('selected');
 });

 - Using the onBefore callback.

 I think the first one is simple and safe. I'd go for that.

 Cheers

 --
 Ariel Flesler
 http://flesler.blogspot.com

 On Oct 9, 8:37 am, Armand Datema [EMAIL PROTECTED] wrote:
  Hi
 
  I am using the serialscroll on my site to page through a news resultset.
 I
  am using the naviagation option that automatically turns a given list
 into
  the naviagation for this scroller.
 
  However I would like to have the link in the ul have a new class when its
  clicked so I can style this differently, whats the best way to do this.
 
  thanks in advance
 
  Armand




-- 
Armand Datema
CTO SchwingSoft


[jQuery] SerialScroll navigation modification question

2008-10-09 Thread Armand Datema
Hi

I am using the serialscroll on my site to page through a news resultset. I
am using the naviagation option that automatically turns a given list into
the naviagation for this scroller.

However I would like to have the link in the ul have a new class when its
clicked so I can style this differently, whats the best way to do this.

thanks in advance

Armand


[jQuery] making a div full screen on top of other

2008-05-13 Thread Armand Datema

Hi

I am making a portal layout system with drag drop etc. All of that is
done thanks to jquery ui and the demo I got a nice part of it working.

Now I want to b able to make a div occupy full screen. Whats is the
best way to do this , especiallycross browser ( HIghest z index and
max size for viewportt.

Is there some excisiting code allready or a simple plugin?

Thanks
Armand


[jQuery] Re: find by partial id

2008-05-11 Thread Armand Datema
Hi

I think you are using aps.net so you could try the asp.net call to get a
cleintid

%=lblName.ClientID %


On 5/11/08, steve_f [EMAIL PROTECTED] wrote:


 you can use the following
 $([EMAIL PROTECTED]'lblName'])



 On May 11, 8:37 am, vladv [EMAIL PROTECTED] wrote:
  hello
  please help me with a simple question
 
  i have a control which is rendered couple of times (gridview) and gets
  some id which i know only part of, for example if i named my label
  lblName then on each row I will have
 
  gvMyGrid$ctr32$lblName or something like this..
 
  how can I find all the labels? can I find by partial id?
 
  I tried $(#*lblName). but it doesn't work
 
  Thank you




-- 
Armand Datema
CTO SchwingSoft


[jQuery] Re: Question: Selecting all the links in div

2008-04-24 Thread Armand Datema
Hi

does this UserSubPanel is a gernal div  like

div id=UserSubPanel

or an asp.net div like

div id=UserSubPanel runat=server


if the second is the case than your div cannot be found because
aps.netrwrites the id to something like div id=asp_UserSubPanel

Armand

On Wed, Apr 23, 2008 at 11:16 PM, Hamish Campbell [EMAIL PROTECTED]
wrote:


 Could you post the html? That would help a lot. If the links exist
 your code should work.

 btw, ripple, you shouldn't need to use 'each' - addClass will apply to
 all objects in the collection. Using 'each' just adds overhead.

 On Apr 24, 3:14 am, ripple [EMAIL PROTECTED] wrote:
  Why not loop through it? This is usually how I would do it.
 
$(document).ready(function(){
 
  $('#UserSubPanel  a').each(function(i) {
 
  $(this).addClass('sideLink');
 
  });
 
   http://2whoa.com/dominate/
 
  vladv [EMAIL PROTECTED] wrote:
 
  Thanks for your answer :)
  I tried this also, but no luck...
 
  What may be the problem?
  I have another jQuery function in the same place, but it works just
  fine
 
  can it be that nested div called in other way?
 
  Thanks again
 
  On Apr 23, 3:26 pm, Giuliano Marcangelo
  wrote:
 
 
 
 
 
   $(document).ready(function(){
 
   $('#UserSubPanel a').addClass('sideLink');
   });
 
   2008/4/23 vladv :
 
Selecting all the links in div..
I know it should be really simple, but for some reason I can't make
 it
work..
 
I work with asp.net and try to run something like this:
 
$(document).ready(function(){
 
$('#UserSubPanel  a').addClass('sideLink');
});
 
but it doesn't work. The links are LinkButtons but rendered as
Can someone please help me with this?
Thanks in advance.
 
  -
  Be a better friend, newshound, and know-it-all with Yahoo! Mobile.  Try
 it now.- Hide quoted text -
 
  - Show quoted text -




-- 
Armand Datema
CTO SchwingSoft


[jQuery] ui real world demo modification

2008-04-05 Thread Armand Datema
http://dev.jquery.com/view/trunk/ui/demos/real-world/layout/

Anyone made a modification to this one so that the positions after drag and
drop can be saved in cookie


[jQuery] How to reproduce this effect ?

2007-11-18 Thread Armand Datema

Hi

I have to redesign a site to a new cms and Im running into troubles
with the javascript, I want to redo this in jquery

How would i create the following effect

http://www.siriusplayground.nl/

the 3 images with the sliding layers on them?

thanks

Armand


[jQuery] problem with jquery in ie6 en ie7 when using bannerscripts from 3rd parties

2007-10-24 Thread Armand Datema

Hi

We have the following website
http://www.itbuzz.nl/tabid/89/pr/1203514/default.aspx

here we hav an acoordeon like script for the buzzingonfo on the right
side and the new items in the middle.

This page works perfect in firefox but in ie 6 and ie7 the accordeon
code doesnt get fired, the news and the buzzing info items dont
collapse.

This doenst happen all the time but only when certain flash banners
are used that also use javascript themselfes i some way.

for example the coannon and the atos origina banner

Anyone klnow what can be causing this?

-- 
Armand Datema


[jQuery] Re: Accordion Plugin - horizontal

2007-09-14 Thread Armand Datema

http://dev.portalzine.de/index?/Horizontal_Accordion--print

http://cherne.net/brian/resources/jquery.slidingPanels.html

On 9/14/07, Chango [EMAIL PROTECTED] wrote:

 Does anybody can help me to make accordion working in horizontal way?

 http://bassistance.de/jquery-plugins/jquery-plugin-accordion/

 I really need this,
 thanks!




-- 
Armand Datema
CTO SchwingSoft


[jQuery] Simple table pager plugin ?

2007-09-05 Thread Armand Datema

Hi

I found the tabesorter plugin and the tablepages plugin for this one.
All very nice but I need a simpler version, is there one around that
can handle the following or do I need to look at it myself

--
row
--
row
---
row
---

 1/5  

Is there a simpler plugin or should I just use the tbalesorter and pager plugin


-- 
Armand Datema
CTO SchwingSoft


[jQuery] New css framework with helper tool ( a website builder made with jquery)

2007-08-31 Thread Armand Datema

Just ran into this one, nice idea but whats cooler, the entire thing
is build in jquery

http://builder.yaml.de/

-- 
Armand Datema
CTO SchwingSoft


[jQuery] small issue with script ( working in firefox not in ie )

2007-08-22 Thread Armand Datema

HI

I made the following small script

http://z.nu.nl/menu/drop2.htm

if you click an arrow that section folds open and the arrow is changed
to the selected one.

However this is working in Firefox but not in IE ( tested in 6 and 7 )

How can I get this to work in IE also?

thanks in advance

Armand


[jQuery] Re: ASP.NET IDs

2007-08-19 Thread Armand Datema

@Sam

I always use this as well but maybe a trick for you ineed a bit more
design freedom over every piece of repeated data

In my repeater item template I always include a multiview control with
several views.

This way on databound of the repeater i can determine which view of
the multiview to use for each repeater item. But still keep the code
as clean  as possible. But with more options than itemtemplate and
alternating item template

Armand

On 8/19/07, Sam Collett [EMAIL PROTECTED] wrote:

 I use $([EMAIL PROTECTED]]) to get any input elements whose id ends
 with MyID (i.e. whatever you set in your ASPX page). Either that, or
 use a class instead.

 As for the 2nd question, I don't use anything other than the basic
 controls (repeater, dropdownlist etc - DataGrid's and GridViews I
 don't use) as it helps keep the HTML clean. It also means that any
 code I write will be pretty portable (i.e. very little modification
 needed to get it to work with PHP, JSP, CFML etc).

 On Aug 18, 9:29 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
  I have two small questions, if anybody can help:
 
  1. This was recently published concerning .NET:
 
  if you have an element that has runat=server attribute you cannot
  call it directly as #loginForm  because asp.net rewrites the id to
  something different  just doa view source on your aspx page and you
  will see the renamed form cleintid 
 
  I was wondering how to probably implement jQuery with an ASP.NET
  control considering this problem.  Or do we simply need to write out:
 
  ctl00_ContentPlaceHolder1_btnConfirm to access the btnConfirm
  button?
 
  2) I'm also using AJAX update panel to update a gridview.  Everything
  is working great.  However, once I update the gridview and it's
  refreshed in AJAX, my jQuery no longer works, even though the code is
  there.
 
  Has anybody had any experience with this?  Thanks for the help!




-- 
Armand Datema
CTO SchwingSoft


[jQuery] issues with accordeon and tooltiip z-index

2007-08-13 Thread Armand Datema

Hi

I have an accordeon like thingie made ont he following page

http://itbuzz.howardshome.com/Home/tabid/54/Default.aspx

I also have a tooltip there

you can see it working on the first item, but on the second item, all
the title bars go throgh the tooltip. Any idea whats causing this and
any solution?

-- 
Armand Datema
CTO SchwingSoft


[jQuery] [announce] new site with jquery

2007-07-30 Thread Armand Datema

Hi

Just wanted to drop in a newly redesigned site with some jquery functionality

http://z.nu.nl  ( dutch business news site )

- tabs
- some easy scripting for setting active links, rewriting external
links, setting target of links to certain urls and a few more.


-- 
Armand


[jQuery] Re: Google Adsense Java Script Code To test your website

2007-07-30 Thread Armand Datema

Well google a bit and we are not the only list she is spamming with
various kinds of google adsense postings

reported with google also

Armand

On 7/30/07, Rey Bango [EMAIL PROTECTED] wrote:

 I figured as much but didn't want to just call someone out in case it
 was a legitimate posting. :)

 Rey

 Klaus Hartl wrote:
 
  Rey Bango wrote:
 
  Hi Mary,
 
  There doesn't seem to be a question here. Why would you request people
  to do this?
 
  Rey...
 
  I think that's kind of spam, asking you to put ads into your page *they*
  get money for...
 
 
  --Klaus
 



-- 
Armand Datema
CTO SchwingSoft


[jQuery] Re: DNN and jQuery Conflict

2007-07-23 Thread Armand Datema


No problem let me know if you have solved it.

Armand

On 7/21/07, James [EMAIL PROTECTED] wrote:


Thank you, Armand, for your swift response. I will look into these
recommendations and see what I can't make work.

On Jul 21, 4:43 am, Armand Datema [EMAIL PROTECTED] wrote:
 Mm i never had issues with dnn and js

 I just add my script in the default.aspx page myself that works most of the 
time

 also the page header tags option is not very usuable, you cannot add
 to many scripts more than a few lines and it gets saved truncated so
 you have missng code and none closed tags

 I do the call for the scripts ( plugins and jquery ) in the main
 default.aspx ( make sure to do it as

 http://www.mydnnportal.com/js/jquery.js   ( dont use /js/jquery.js )
 - if youa re deep in a friendly url like

 http://www.mydnnportal.com/tabid/87/myproperty/myvalue/default.aspx

 it cannot find the js file because there is 
nohttp://www.mydnnportal.com/tabid/87/myproperty/myvalue/js

 as for the direct calls to actually call plugin with the desired
 parameters the can be inserted in he top of your skin ascx files

 % ascx
 script
 script here
 /script

 I also use the snapsis dnn css module with template possibility's
 together with dnn. So if I use that he has a specal option that allow
 you to put all scripts ins special tags and than the skinobject itself
 takes care of the register.clientsidescript for you to make sure it
 gets injected in the head

 I have been using it in over 100 portals so far an never an issue

 ps: for the pure jquery people, im answering this mail with tems of
 jquery asp.net and dotnetnuke

 Armand
 aka Nokiko on dnn forum

 On 7/21/07, James [EMAIL PROTECTED] wrote:





  Alex,

  In this case, the only plugin I'm attempting to include is the Jorn
  Zaefferer's Tooltip plugin; of course, in addition to the actual
  jQuery (1.1.3.1) script itself.

  On Jul 21, 5:03 am, Alexandre Plennevaux [EMAIL PROTECTED]
  wrote:
   Hi James,

   Did you check that it is not a namespace issue? Also, which plugins do you
   intend to use? Not all jquery plugins were created equals in quality...

   Alex

 --
 Armand Datema
 CTO SchwingSoft





--
Armand Datema
CTO SchwingSoft


[jQuery] Re: DNN and jQuery Conflict

2007-07-21 Thread Armand Datema


Mm i never had issues with dnn and js

I just add my script in the default.aspx page myself that works most of the time

also the page header tags option is not very usuable, you cannot add
to many scripts more than a few lines and it gets saved truncated so
you have missng code and none closed tags

I do the call for the scripts ( plugins and jquery ) in the main
default.aspx ( make sure to do it as

http://www.mydnnportal.com/js/jquery.js( dont use /js/jquery.js )
- if youa re deep in a friendly url like

http://www.mydnnportal.com/tabid/87/myproperty/myvalue/default.aspx

it cannot find the js file because there is no
http://www.mydnnportal.com/tabid/87/myproperty/myvalue/js

as for the direct calls to actually call plugin with the desired
parameters the can be inserted in he top of your skin ascx files

% ascx
script
script here
/script

I also use the snapsis dnn css module with template possibility's
together with dnn. So if I use that he has a specal option that allow
you to put all scripts ins special tags and than the skinobject itself
takes care of the register.clientsidescript for you to make sure it
gets injected in the head

I have been using it in over 100 portals so far an never an issue

ps: for the pure jquery people, im answering this mail with tems of
jquery asp.net and dotnetnuke

Armand
aka Nokiko on dnn forum

On 7/21/07, James [EMAIL PROTECTED] wrote:


Alex,

In this case, the only plugin I'm attempting to include is the Jorn
Zaefferer's Tooltip plugin; of course, in addition to the actual
jQuery (1.1.3.1) script itself.

On Jul 21, 5:03 am, Alexandre Plennevaux [EMAIL PROTECTED]
wrote:
 Hi James,

 Did you check that it is not a namespace issue? Also, which plugins do you
 intend to use? Not all jquery plugins were created equals in quality...

 Alex





--
Armand Datema
CTO SchwingSoft


[jQuery] Re: DNN and jQuery Conflict

2007-07-21 Thread Armand Datema


A good testing way is also to go the the dnn page and save the file as
html ( html only )

then copy over that html file to your dnn root and add the jquery
scripts and calls.

If you can get the desired effects there then its a dnn issue and those can be

truncated header tag strings
cant find js files ( use the full http://mydnn.com/js/jquery.js )
garbage html output ( dont expect jquery to work when admin or host
are logged in ) - this is because of the extra script and html
injection

Armand




On 7/21/07, Armand Datema [EMAIL PROTECTED] wrote:

Mm i never had issues with dnn and js

I just add my script in the default.aspx page myself that works most of the time

also the page header tags option is not very usuable, you cannot add
to many scripts more than a few lines and it gets saved truncated so
you have missng code and none closed tags

I do the call for the scripts ( plugins and jquery ) in the main
default.aspx ( make sure to do it as

http://www.mydnnportal.com/js/jquery.js( dont use /js/jquery.js )
- if youa re deep in a friendly url like

http://www.mydnnportal.com/tabid/87/myproperty/myvalue/default.aspx

it cannot find the js file because there is no
http://www.mydnnportal.com/tabid/87/myproperty/myvalue/js

as for the direct calls to actually call plugin with the desired
parameters the can be inserted in he top of your skin ascx files

% ascx
script
script here
/script

I also use the snapsis dnn css module with template possibility's
together with dnn. So if I use that he has a specal option that allow
you to put all scripts ins special tags and than the skinobject itself
takes care of the register.clientsidescript for you to make sure it
gets injected in the head

I have been using it in over 100 portals so far an never an issue

ps: for the pure jquery people, im answering this mail with tems of
jquery asp.net and dotnetnuke

Armand
aka Nokiko on dnn forum

On 7/21/07, James [EMAIL PROTECTED] wrote:

 Alex,

 In this case, the only plugin I'm attempting to include is the Jorn
 Zaefferer's Tooltip plugin; of course, in addition to the actual
 jQuery (1.1.3.1) script itself.

 On Jul 21, 5:03 am, Alexandre Plennevaux [EMAIL PROTECTED]
 wrote:
  Hi James,
 
  Did you check that it is not a namespace issue? Also, which plugins do you
  intend to use? Not all jquery plugins were created equals in quality...
 
  Alex




--
Armand Datema
CTO SchwingSoft




--
Armand Datema
CTO SchwingSoft


[jQuery] unordered list each li a different background

2007-07-16 Thread Armand Datema


Hi

What is the best way to give a different class to each item in an unordered list

just a for each and then apply a new class or is there something better

Armand

On 7/15/07, bytte [EMAIL PROTECTED] wrote:


I have this menu which is just a few menu-items placed next to
eachother like this:

HOME - CONTACT - NEWS

Beneath the menu I have a little image, kind of like an arrow.
I want the arrow to slide from left to right from menu-item to menu-
item, depending on the item i'm hovering over.

So let's say I'm at the Home page. The little arrow is pointing at
HOME.
I'm hovering over NEWS so now the arrow slides over to the right to
point at the word HOME.

If I switch my mouse to hover over the CONTACT item, the arrow
slides along to point at CONTACT.

And so on. If I'm not hovering over any menu-items, the arrow should
relocate to point to the page I'm currently at.

Is something like this do-able in jQuery? Is there anyone that can
point me in the right direction?





--
Armand Datema
CTO SchwingSoft


[jQuery] Re: unordered list each li a different background

2007-07-16 Thread Armand Datema


Hi

Yeah I agree on that but i can do it either returned from back end
code or with a javascript.

http://itbuzz.howardshome.com/

right now I have it with classes in the css as well as html. The best
option would be an ordered list but with image bullet instead of
numbers.
Armand




On 7/16/07, Klaus Hartl [EMAIL PROTECTED] wrote:


Stephan Beal wrote:
 On Jul 16, 12:47 pm, Armand Datema [EMAIL PROTECTED] wrote:
 Hi

 What is the best way to give a different class to each item in an unordered 
list

 just a for each and then apply a new class or is there something better

 Applying classes has the limitation that you have to create a class
 for each color combination. It would probably be more maintainable to
 apply the styles using the .css('background-color',...)
 and .css('color',...) approach.

Hm, in my opinion it is better to keep the three layers structure
(HTML), presentation (CSS) and behavior (JS) as separated as possible.


--Klaus




--
Armand Datema
CTO SchwingSoft


[jQuery] Re: unordered list each li a different background

2007-07-16 Thread Armand Datema


Hi

yeah that is an option but i need a different bullet for each item

Armand

On 7/16/07, Klaus Hartl [EMAIL PROTECTED] wrote:


Armand Datema wrote:

 Hi

 Yeah I agree on that but i can do it either returned from back end
 code or with a javascript.

 http://itbuzz.howardshome.com/

 right now I have it with classes in the css as well as html. The best
 option would be an ordered list but with image bullet instead of
 numbers.
 Armand

ol {
 list-style: square url(bullet.png);
}


--Klaus




--
Armand Datema
CTO SchwingSoft


[jQuery] jquery books, whats the differences

2007-07-09 Thread Armand Datema


Hi

Now that im using jquery more and more for projects I was thinking
about buying one or more books ( since there are 3 coming out )

What is the difference between the books target readers etc.

I would like a good book that explains jquery and how it works and how
to build and setup my own plugins

Armand


[jQuery] What would be the best way to accomplish this?

2007-07-04 Thread Armand Datema


http://nokiko.howardshome.com/jqhowto.gif

I am looking for the best way to create the above design. You have a
title and a summary, you only get to see one line of the summary and
need to click to see the rest.

Is there an easy way to do this that it only displayss the first line
or do i need to figure this out in another way?

thanks for any help

Armand


[jQuery] Re: What would be the best way to accomplish this?

2007-07-04 Thread Armand Datema


http://dnnportals.howardshome.com/jqhowto.gif

On 7/4/07, Dave Probert [EMAIL PROTECTED] wrote:


Sorry mate, your link doesn't work.



On Jul 4, 2:09 pm, Armand Datema [EMAIL PROTECTED] wrote:
 http://nokiko.howardshome.com/jqhowto.gif

 I am looking for the best way to create the above design. You have a
 title and a summary, you only get to see one line of the summary and
 need to click to see the rest.

 Is there an easy way to do this that it only displayss the first line
 or do i need to figure this out in another way?

 thanks for any help

 Armand





--
Armand Datema
CTO SchwingSoft


[jQuery] Re: ANNOUNCE: Call for Articles for Visual jQuery Magazine

2007-07-04 Thread Armand Datema


how about jquery and google gears, there is allready a google gears and jsext

Armand

On 7/4/07, R. Rajesh Jeba Anbiah [EMAIL PROTECTED] wrote:


On Jun 30, 1:34 am, Rey Bango [EMAIL PROTECTED] wrote:
   snip
 For more details please visit the jQuery blog entry here:

 http://jquery.com/blog/2007/06/28/163/

   The contact e-mail editor AT visualjquery DOT com is not
reachable.

--
  ?php echo 'Just another PHP saint'; ?
Email: rrjanbiah-at-Y!comBlog: http://rajeshanbiah.blogspot.com/





--
Armand Datema
CTO SchwingSoft


[jQuery] Re: ANNOUNCE: Call for Articles for Visual jQuery Magazine

2007-07-04 Thread Armand Datema


no hijacking i was suggesting an article

On 7/4/07, R. Rajesh Jeba Anbiah [EMAIL PROTECTED] wrote:


On Jul 4, 4:15 pm, Armand Datema [EMAIL PROTECTED] wrote:
 how about jquery and google gears, there is allready a google gears and jsext
  snip

   Hmm... Why hijacking thread? Start a new thread.

--
  ?php echo 'Just another PHP saint'; ?
Email: rrjanbiah-at-Y!comBlog: http://rajeshanbiah.blogspot.com/





--
Armand Datema
CTO SchwingSoft