Vasiliy Selivanov

  • RSS

Perfect statistic site about installed adobe flash player and microsoft silverlight

Posted on Thursday, January 29th, 2009

Check this http://www.riastats.com statistic from 900 000 users about flash player and silverlight Dear customers you still want optimise your flash application for 7 version of Flash Player?? Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers Tweet about it Subscribe to the comments on this post

continue reading

Ukraine. Carpathian Mountains. Verhniy Yaseniv. Green tourism / Украина. Карпаты. Верхній Ясенів.

Posted on Wednesday, July 1st, 2009

I was at Carpathian Mountains last weekend so I want to show you some photos from this green travel. Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers Tweet about it Subscribe to the comments on this post

continue reading

Multiple File Upload plugin for jQuery and IE7 and jQuery validation form

Posted on Wednesday, May 14th, 2008

All of you, maybe, know about this super Multiple File Upload. But when I start use it I have a strange things in IE7. I know it you could see it on the plugin website. (Select one file and the set focus again to this field or just try to upload another file).   So [...]

continue reading

Archive for the ‘IE’ Category

symfony ahDoctrineEasyEmbeddedRelations plugin, IE and Compatibility View Mode

Friday, March 18th, 2011

I have found interesting bug with symfony ahDoctrineEasyEmbeddedRelations plugin when you use IE Compatibility View Mode. Always save only 2 instance and never more. So lets find why it is happen.

(more…)

Multiple File Upload plugin for jQuery and IE7 and jQuery validation form

Wednesday, May 14th, 2008

All of you, maybe, know about this super Multiple File Upload. But when I start use it I have a strange things in IE7. I know it you could see it on the plugin website. (Select one file and the set focus again to this field or just try to upload another file).

bug

 

So have I fix this bug.

1. open jquery.MultiFile.js some with editors

2. after

        /// now let’s use jQuery
        slave = $(slave);

insert  this

        slave.attr("name",(slave.name || $(MASTER).attr(‘name’) || ‘file’));
        slave.attr("id",(slave.id || MASTER.generateID(slave.i)));
        slave.val(”);
        slave.focus();

3. change

        // Remove element, remove label, point to current
                                        if(slave.i==0){
                                            $(MASTER.eCur).remove();
           MASTER.eCur = slave;
                                        }
                                        else{
                                            $(slave).remove();
                                        };

to

$(slave).remove();

 4. Thats all!

Now problem with jQuery validation plugin.

If you have a error message about that you should enter data less or equal some number.  You should replace all ".max" to ".maximum". Thats all too.

It was very helpful for me, so I hope it will be helpful for you!. If you have any question just ask me.