Portal Engine Questions on portal engine and web parts.
Version 6.x > Portal Engine > scrolling text View modes: 
User avatar
Member
Member
ahmad.mai-edata-tc - 1/9/2012 9:00:29 AM
   
scrolling text
I added scrolling text web part it's working on the cms desk
but when in the live site it doesn't work

User avatar
Kentico Consulting
Kentico Consulting
kentico_borisp - 1/10/2012 1:23:37 AM
   
RE:scrolling text
Hello,

It's possible, that there is some other web part interfering with this web part. Scrolling text is using the Mootools library, which is build with jQuery. Are you using any jQuery code on your page? Could you please try to disable web parts one by one to identify, which web part is causing the issue, if there is a web part causing this?

Best regards,
Boris Pocatko

User avatar
Member
Member
ahmad.mai-edata-tc - 1/10/2012 5:04:33 AM
   
RE:scrolling text
thanks for your answer
I have head html web part where I call JavaScript file for slideshow, when i disable it the Scrolling text work,
how can I make the two web parts work together?

User avatar
Kentico Consulting
Kentico Consulting
kentico_borisp - 1/12/2012 2:06:24 AM
   
RE:scrolling text
Hello,

If your custom code uses jQuery, please use the noConflict version of it (use $j instead of $).

Best regards,
Boris Pocatko

User avatar
Member
Member
ahmad.mai-edata-tc - 1/12/2012 9:13:19 AM
   
RE:scrolling text
thanks a lot its work
i have another question
can i slide more than one item in the same time ?

User avatar
Kentico Consulting
Kentico Consulting
kentico_borisp - 1/13/2012 5:15:40 AM
   
RE:scrolling text
Hello,

Could you please describe this requirement in more detail? How do you want to slide two pictures at once? Should be two images displayed at once?

Best regards,
Boris Pocatko

User avatar
Member
Member
ahmad.mai-edata-tc - 1/15/2012 2:07:59 AM
   
RE:scrolling text
I mean like the http://devnet.kentico.com/Marketplace/Web-parts/Scrolling-Footer.aspx

User avatar
Kentico Consulting
Kentico Consulting
kentico_borisp - 1/16/2012 1:31:35 AM
   
RE:scrolling text
Hello,

Our built in web part doesn't support this behavior by default. You would have to customize it to achieve such functionality. However, if the referenced web part from the marketplace covers your needs, please give it a try, since it should be working in the 6.0 version of Kentico. You can also create a custom web part as described in our documentation.

Best regards,
Boris Pocatko

User avatar
Member
Member
DOrazine-kubotekusa - 1/23/2013 1:50:54 PM
   
RE:scrolling text
Boris,

I dont know Javascript to well, if a simply do a replace all ($ for $j) will that work?

Thanks,
David

User avatar
Kentico Consulting
Kentico Consulting
kentico_borisp - 1/29/2013 6:30:45 AM
   
RE:scrolling text
Hello,

You need to some additional processing, but it's quite easy. Please check the excerpt below:

REFERENCING MAGIC - SHORTCUTS FOR JQUERY

If you don't like typing the full "jQuery" all the time, there are some alternative shortcuts:

Reassign jQuery to another shortcut
var $j = jQuery;
(This might be the best approach if you wish to use different libraries)
Use the following technique, which allows you to use $ inside of a block of code without permanently overwriting $:
(function($) { /* some code that uses $ */ })(jQuery)
Note: If you use this technique, you will not be able to use Prototype methods inside this capsuled function that expect $ to be Prototype's $, so you're making a choice to use only jQuery in that block.
Use the argument to the jQuery(document).ready(function($) {})
DOM ready event:
jQuery(function($) { /* some code that uses $ */ });
Note: Again, inside that block you can't use Prototype methods.


It's from this link.



Best regards,
Boris Pocatko