Skip to Content Skip to Menu

CB Ajax Text Fieldtype

  • Altano
  • Altano
  • OFFLINE
  • Posts: 18
  • Thanks: 0
  • Karma: 0
15 years 6 months ago #94393 by Altano
Replied by Altano on topic Re:CB Ajax Text Fieldtype
krileon wrote:

Was not able to duplicate any issues presented here.

Ensure you're using the latest PHP5 and do not have any JS conflicts. I suggest getting Firebug for Firefox and see if any errors are reported.

Try using the default joomla template.


I changed the template. There was no change.
Then I've used Firebug.
But, I don't see any particular errors with Firebug (well... I'm not an expert).

[code:1]<html>
<head>
<script type="text/javascript">
1
2
3
4if (document.getElementById){
5document.write('<style type="text/css">')
6document.write('.multiparts, #formnavigation{display:none;}')
7document.write('</style>')
8}
9
10var curpart=0
11
12
13function getElementbyClass(classname){
14partscollect=new Array()
15
16var inc=0
17var alltags=document.all? document.all : document.getElementsByTagName("*"«»)
18for (i=0; i<alltags.length; i++){
19if (alltags.className==classname)
20partscollect[inc++]=alltags
21}
22}
23
24function cycleforward(){
25partscollect[curpart].style.display="none"
26curpart=(curpart<partscollect.length-1)? curpart+1 : 0
27partscollect[curpart].style.display="block"
28updatenav()
29}
30
31function cycleback(){
32partscollect[curpart].style.display="none"
33curpart=(curpart>0)? curpart-1 : partscollect.length-1
34partscollect[curpart].style.display="block"
35updatenav()
36}
37
38
39function updatenav(){
40document.getElementById("backbutton"«»).style.visibility=(curpart==0)? "hidden" : "visible"
41document.getElementById("forwardbutton"«»).style.visibility=(curpart==partscollect.length-1)? "hidden" : "visible"
42}
43
44function onloadfunct(){
45getElementbyClass("multiparts"«»)
46partscollect[0].style.display="block"
47document.getElementById("formnavigation"«»).style.display="block"
48updatenav()
49}
50
51if (window.addEventListener)
52window.addEventListener("load", onloadfunct, false)
53else if (window.attachEvent)
54window.attachEvent("onload", onloadfunct)
55else if (document.getElementById)
56window.onload=onloadfunct
57
58
59
</script>
<style type="text/css">
1.multiparts, #formnavigation{display:none;}
</style>
</head>
<body/>
</html>[/code:1]


Any idea?

I saw in another forum, that if the "shell access" is not enabled (as in my server), some plugins in CB can't work. Can it be the reason?

Thanks.

Please Log in or Create an account to join the conversation.

  • krileon
  • krileon
  • ONLINE
  • Posts: 48424
  • Thanks: 8274
  • Karma: 1443
15 years 6 months ago #94498 by krileon
Replied by krileon on topic Re:CB Ajax Text Fieldtype
Ajax text field plugin has been investigated and upgraded. Don't have release time frame, but hopefully will resolve all of your issues.


Kyle (Krileon)
Community Builder Team Member
Before posting on forums: Read FAQ thoroughly + Read our Documentation + Search the forums
CB links: Documentation - Localization - CB Quickstart - CB Paid Subscriptions - Add-Ons - Forge
--
If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
--
If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please send me a private message with your thread and will reply when possible!
--
Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
--
My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.

Please Log in or Create an account to join the conversation.

  • mediaguru
  • mediaguru
  • OFFLINE
  • Posts: 365
  • Thanks: 1
  • Karma: 70
15 years 6 months ago #94554 by mediaguru
Replied by mediaguru on topic Re:CB Ajax Text Fieldtype
You would use firebug to find the CSS which would need to be adjusted, not necessarily just errors.

CB/Joomla golf site: www.thegolfspace.com
Geek/joomla site: www.tkserver.com

Check out my Joomla/CB projects:

* LIKE thumbs up system for "liking" content items
* Karma - CB user rating system
* Golf Score Tracker
* Jitter - status update system. "What's on your mind?"
* CB Author Plug - Shows CB author link and avatar in content items. J1.5 compatible and very customizable!

Found on my web site or in the Joomlapolis Directory !

Please Log in or Create an account to join the conversation.

Moderators: beatnantkrileon
Powered by Kunena Forum