
myproxy
Posts: 23
|
| Posted: 04/05/2009, 3:41 PM |
|
Anybody have a working example for combining an Ajax panel using the plugins for Jquery to make rounded corners on the divs.
At the simplest level, the jquery plugin for rounded corners is throwing an error as soon as I have an CCS Ajax update panel. I suspect its related to how the script gets invoked and having a conflict with how CCS invokes its own scripts.
Anybody combine CCS Ajax with JQuery functionality?
Can you post an example or point an example?
I would like support for Jquery under CCS as it tends to be more popular and better plugins than the PT library.
|
 |
 |
ReneS
Posts: 225
|
| Posted: 04/06/2009, 3:04 AM |
|
Hi,
You can try to use " Niftycube" to round your div's. http://www.html.it/articoli/niftycube/index.html
Rene
|
 |
 |
myproxy
Posts: 23
|
| Posted: 04/06/2009, 7:01 PM |
|
Great utility, this is quite good! Thanks alot ReneS...
|
 |
 |
clint
Posts: 3
|
| Posted: 06/05/2009, 8:23 AM |
|
Anybody combine CCS Ajax with JQuery functionality?
Can you post an example or point an example?
I use it alot but go about using it this way with the example being a modal or dialog..
You can read more about it here: http://docs.jquery.com/Using_jQuery_with_Other_Libraries
Soon I might use a update panel in jquery as well and get rid of PT
var $j = jQuery.noConflict(); <========KEY LINE
function showDialog(ID){
alert(ID);
$j("#divId").html('<iframe id="modalIframeId" width="100%" height="100%" marginWidth="0" marginHeight="0" frameBorder="0" scrolling="auto" onunload="alert(\'onunload\')" />').dialog("open");
$j("#modalIframeId").attr("src","ccspage.asp?ID=" + ID); <========php works as well
return false;
}
$j(document).ready(function() {
$j("#divId").dialog({
autoOpen: false,
modal: true,
height: 500,
width: 500
});
});
|
 |
 |
antman48
Posts: 7
|
| Posted: 06/19/2009, 12:13 AM |
|
Better do it this way.
jQuery(function($) {
/* some code that uses $. i think you must include jQuery.js before prototype.js */
});
|
 |
 |
|

|
|
|
|