Problem with Anchor Tag in CF

2008-05-01 Thread shariff sml
Hi every one i have Problem with Anchor tag using in CF 

cfoutput
A 
href=http://www.MyClass.com/radio4/schedule.htm##developer/ADF/adf_overview.htm;
 Some Text/A- display from fragmentation id position in file with this 
absolute address.
/cfoutput

I know that this is not related to CF and its simple but i am bcoming lame 
about this 

It works with Morgila, but in IE it refers only up to Schedule.htm

Can any one tell me whats happning here 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304586
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Problem with Anchor Tag in CF

2008-05-01 Thread shariff sml
Hello Phillip 

http://www.MyClass.com/radio4/schedule.htm

is the index of the page so that i should refer to this index first and then to 
the internal link 

##developer/ADF/adf_overview.htm

but i am confused why IE is not supporting , this was working before but i 
should made some changes in the link directory so i changed after that i am not 
able to c only in IE , But in all other browsers like Morzila and safari its 
working 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304589
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Problem with Anchor Tag in CF

2008-05-01 Thread shariff sml
Hi Dave 

yes i under stand what you are trying to tell me, but i cant change the format 
because its client requirement and this was return by some one before and it 
was not changed , they need this like this only.

is there any way to do or i should change the name it self as you said 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304595
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


hi guys can any one help me in the Query below

2008-04-21 Thread shariff sml
 Hey GUys, for months Ive been calling thickbox (jquery plugin) from 
 inside cfdivs using 
 
 cfloop query=mydsn
 a href=javascript:tb_show('My Image Caption','/img/#fetchgallery.
 ImageName#') rel=The Name of my gallery class=thickbox 
 img src=/img/#fetchgallery.ThumbNailImageName# border=0/
 /a
 /cfloop
 
 Simple enough.. I have a loop that setsup a list of thumbnails that 
 have links to them, they are all grouped together with rel. When 
 ThickBox loads it SHOULD produce a gallery inside the cfdiv that this 
 is loaded in. Thick box will load them one at a time but it looses its 
 gallery function - not paging forward or backward.
 
 Anyone had any experiance with this... CFDIV has made my world so much 
 simpler and made me look soo much smarter than I really am I feel that 
 I MUST be doign somethign wrong... 
 
 Thanks ;)


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303945
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


hi guys can any one help me in the Query below

2008-04-21 Thread shariff sml
cfset attributes.ids = ValueList(GetAllAdmins.Author)
cfset attributes.perm = ValueList(GetAllAdmins.IsAdmin)
cfset adminQueryRaw = QueryNew(empid,lastname,firstname,status)
cfset badIDs = 


cfloop from=1 to=#ListLen(Attributes.ids)# index=ThisPlace

cfscript
thisemployeeid = listgetat(attributes.ids, thisplace);
thisperm = listgetat(attributes.perm, thisplace);
/cfscript
cfmodule 
template=#Request.CFRoot#/authentication/act_UserInfoFromEmpNumber.cfm 
employeeid=#ThisEmployeeID#
cfscript
if (len(lastname) AND QueryAddRow(adminQueryRaw)) {
QuerySetCell(adminQueryRaw, empId, thisemployeeid);  
QuerySetCell(adminQueryRaw, lastname, LastName);
QuerySetCell(adminQueryRaw, firstname, FirstName);
if (ThisPerm is 1)
QuerySetCell(adminQueryRaw, status, Full Administrator);
else
QuerySetCell(adminQueryRaw, status, Reporting Only);
} else {
badIDs = ListAppend(badIDs,'#thisemployeeid#');
}
/cfscript 

/cfloop

cfinvoke component=#Request.CFROOT#/CFCs/utility method=bubbleSortQuery 
qryinput=#adminQueryRaw# lstsortcolumns=LastName,FirstName 
lstsortorder=asc,asc returnvariable=adminQuery
cfif listLen(badIDs)
/cfif


AS i have over 1000 records in my database the coldfusion server is timed out 

so can any one help me how to pagging on this code  

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303946
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


hello folks How to do paging on looping a list i was confused please help me

2008-04-21 Thread shariff sml
cfset attributes.ids = ValueList(GetAllAdmins.Author)
cfset attributes.perm = ValueList(GetAllAdmins.IsAdmin)
cfset adminQueryRaw = QueryNew(empid,lastname,firstname,status)
cfset badIDs = 


cfloop from=1 to=#ListLen(Attributes.ids)# index=ThisPlace

cfscript
thisemployeeid = listgetat(attributes.ids, thisplace);
thisperm = listgetat(attributes.perm, thisplace);
/cfscript
cfmodule 
template=#Request.CFRoot#/authentication/act_UserInfoFromEmpNumber.cfm 
employeeid=#ThisEmployeeID#
cfscript
if (len(lastname) AND QueryAddRow(adminQueryRaw)) {
QuerySetCell(adminQueryRaw, empId, thisemployeeid);  
QuerySetCell(adminQueryRaw, lastname, LastName);
QuerySetCell(adminQueryRaw, firstname, FirstName);
if (ThisPerm is 1)
QuerySetCell(adminQueryRaw, status, Full Administrator);
else
QuerySetCell(adminQueryRaw, status, Reporting Only);
} else {
badIDs = ListAppend(badIDs,'#thisemployeeid#');
}
/cfscript 

/cfloop


how to do Pagging on this Code i know how to do if i loop over a query 

can any one help it out. this is because my data base i have over 1000 records 
and coldfusion server time out occures thanks you floks 





~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303947
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


how to implement pagging on a list please c the code below

2008-04-21 Thread shariff sml
cfset attributes.ids = ValueList(GetAllAdmins.Author)
cfset attributes.perm = ValueList(GetAllAdmins.IsAdmin)
cfset adminQueryRaw = QueryNew(empid,lastname,firstname,status)
cfset badIDs = 


cfloop from=1 to=#ListLen(Attributes.ids)# index=ThisPlace

cfscript
thisemployeeid = listgetat(attributes.ids, thisplace);
thisperm = listgetat(attributes.perm, thisplace);
/cfscript
cfmodule 
template=#Request.CFRoot#/authentication/act_UserInfoFromEmpNumber.cfm 
employeeid=#ThisEmployeeID#
cfscript
if (len(lastname) AND QueryAddRow(adminQueryRaw)) {
QuerySetCell(adminQueryRaw, empId, thisemployeeid);  
QuerySetCell(adminQueryRaw, lastname, LastName);
QuerySetCell(adminQueryRaw, firstname, FirstName);
if (ThisPerm is 1)
QuerySetCell(adminQueryRaw, status, Full Administrator);
else
QuerySetCell(adminQueryRaw, status, Reporting Only);
} else {
badIDs = ListAppend(badIDs,'#thisemployeeid#');
}
/cfscript 

/cfloop



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303948
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4