Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - k8fisher

on: 23 January 2013, 17:41 1 Products / AJAX series / Re: Is it possible to add info from additional fields in another table as well

Many thanks, could I ask how long it might take to adjust the code to write to another table / an idea how much that could cost.

K

on: 22 January 2013, 21:15 2 Products / AJAX series / Is it possible to add info from additional fields in another table as well

Hi I was wondering if its feasible to adjust operation so that fields from registration get sent to another table as well.

E.g. couple of the additional fields need to end upp at somepoint in another table. Is it feasible to achieve this without risking melt down?

Where would I look at the find the code that deals with moving data from the form to the tables as is?

K

on: 04 October 2012, 10:06 3 Products / AJAX series / Ajax Scroller module crashing in IE8

Hi Ive a little problem where by in IE8 the module is kinda crashing all over the homepage of my website.

Has anyone else seen anything similar with Ajax scroller. This is the second site Ive used it on (have 2 licenses)

Could it be because Ive just moved the test website to a different domain?

Test website is on http://comtec.comtec-media.co.uk
Live development website is on http://dev.comtec.com
Live website will be at http://www.comtec.com imminently.

Any thoughts very welcome, could it be linked to files within the install having the wrong permissions set.

Kate

on: 01 May 2012, 09:26 4 Products / AJAX series / How to show / hide navigation to avoid cycling from beginning to end of content

Hi

I was just wondering if anyone else has manged to get the scroll buttons to show / hide depending on the position you are within the stream of content being passed through the Ajax scroller? Im trying to hide the up / down button when at the beginning / end of the content to avoid cycling around.

Ive used a really simple javascript method but its doesnt seem to have any effect on the navigation buttons.

Has anyone else tried to achieve this? Im using the rss functionality to pull a twitter list through at dorkingcc.co.uk

Any thoughts v welcome

Kate

Example javascript added to page via mod_ajaxscroller.php (added to page via $content .=' ';
<script>
function toggle_show(id)
{ var el = document.getElementById(id);
if (el && el.style){
el.style.display = el.style.display == "none" ? "block" : "none";
} }
toggle_show(mNavUp104);
</script>
Pages: [1]