an ASP.NET Open Source CMS & eCommerce platform
Search:
Skip Navigation LinksHome > DotShoppingCart Forums > Support > Using DotShoppingCart > Not able to edit or add HTMl blocks
Last Post 5/22/2012 10:02:05 AM By Bahram. 8 replies.
5/11/2012 11:22:24 AM
Bahram
Posts: 878
Joined: 12/8/2008
Location:Vancouver, BC Canada
Not able to edit or add HTMl blocks
Hi Luke,
 
I can not edit or add blocks in Page editor. seems JQuery or Jscripts error. in V.4.0.3
using any browser , IE9, IE7 or chrome.
 
 
SCRIPT438: Object doesn't support property or method 'draggable'
Default.aspx, line 580 character 5
 
 
<script type="text/javascript">
//<![CDATA[
$('.blockEditor[containerId="212"]').draggable({opacity: 0.7, revert: true, scroll: true} )
.droppable({
accept:'.blockEditor[containerId="212"]',
over: function(ev,ui) {
$(this).addClass( parseInt($(this).attr('index')) < parseInt($(ui.draggable).attr('index')) ? 'upline' : 'underline');},
out: function(ev,ui) {
$(this).removeClass('upline').removeClass('underline');},
drop:function(ev,ui) {
//alert($(ui.draggable).attr('index') + ':' + $(this).attr('index'));
$('#ctl00_masterContainerTop_hidMoveInfo212').val($(ui.draggable).attr('blockId') + ':' + $(this).attr('blockId'));
$('#ctl00_masterContainerTop_btnPostBackButton212').click();
}
}).hide().show();
 
 
5/16/2012 7:45:26 AM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: Not able to edit or add HTMl blocks
draggable is from JQuery, Check if you have JQuery javascript included in the header.
DotShoppingCart Staff
5/18/2012 9:19:20 AM
Bahram
Posts: 878
Joined: 12/8/2008
Location:Vancouver, BC Canada
Re: Not able to edit or add HTMl blocks
Header of waht file? Default.aspx?
5/18/2012 12:53:20 PM
Bahram
Posts: 878
Joined: 12/8/2008
Location:Vancouver, BC Canada
Re: Not able to edit or add HTMl blocks
Hi Luke,
 
Your reply is not helpful, this error relates to Admin and Block Editor, It happend when enabling the Page Editor as Admin.
 
Thanks,
5/18/2012 1:30:12 PM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: Not able to edit or add HTMl blocks
Right click the page and then "View Source". Check the html source to see if JQuery javascript is included. If not, figure out why.
DotShoppingCart Staff
5/18/2012 1:49:02 PM
Bahram
Posts: 878
Joined: 12/8/2008
Location:Vancouver, BC Canada
Re: Not able to edit or add HTMl blocks
 
There are multiple JQuery libs is JS folder, and some are in view source :
 
<script type="text/javascript" src="/JS/DSCCommon.js"></script></head>
 
I also have a image.htm with its own lib :
<script type="text/javascript" src="Image Player/jquery-1.2.6.pack.js"></script>
 
 
Thee are also these from web.config
><script type="text/javascript" src="/JS/jquery-1.4.4.min.js"></script><script type="text/javascript" src="/JS/jquery-ui-1.8.7.custom.min.js">
 
after enabling Page Editor
 
What Should be the jQuery library in Default page? Does my ImagePlayer jQuery, intermix with DSC?
 
 
 
5/18/2012 2:22:08 PM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: Not able to edit or add HTMl blocks
Yes, you are using a lower version of JQuery. Try to remove your JQuery reference to see if it fixes.
DotShoppingCart Staff
5/18/2012 3:00:46 PM
Bahram
Posts: 878
Joined: 12/8/2008
Location:Vancouver, BC Canada
Re: Not able to edit or add HTMl blocks
I removed the whole block and it was OK, then I updated the script and used the same jQuery version as DSC but error still occours.
5/22/2012 10:02:05 AM
Bahram
Posts: 878
Joined: 12/8/2008
Location:Vancouver, BC Canada
Re: Not able to edit or add HTMl blocks
Please note that my Java script is in an HTML block and runs correctly. but when I want to Edit any HTML block on the page, the this error happens.