We moved to new unified forum!

Please post all new support queries in our New Forum.

T3 Community Discussion & Support

Let's build the best free Joomla template framework, together!
  1. Daniel Murphy
  2. General Discussion
  3. Friday, 31 October 2014
  4.  Subscribe via email
Hi Everyone!!!

I'm rewriting this question since it was deleted in the latest T3 meltdown. My sympathies to the T3 team and everyone who lost their data - I lost 3 community points :[

I wrote some code in a custom module that includes a simple select field but when you try to hover over the options, they disappear and can't be selected.

This issue is only happens in the following situations:

Using Firefox browser - all other browsers are fine
T3 template - other templates work fine
Inside a custom module - The markup in the page content works fine


Notes:

This is not a css issue - I matched the broken module's markup css with working markup in the page content
Since css is not to blame, I suspect there is some sort of conflict with Javascript and the T3 template - but I get no console errors.



Can anyone else confirm???

THANKS!!!
  Newman University, 3100 McCormick Street, Wichita, KS 67213, USA
Visit 
Comment
There are no comments made yet.
Accepted Answer Pending Moderation
0
Votes
Undo
Hi Daniel,

I need the custom html code that you added to the Custom HTML module, not the php code. The best way to solve the problem is pm me your site url, admin account and the module name. I will investigate and get it fixed for you.

Gardner.
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 1
Accepted Answer Pending Moderation
0
Votes
Undo
this is the module's default.php file:

<?php
// No direct access
defined('_JEXEC') or die;
?>

<p>Displaying the following departments:<br />
<?php
foreach ($dirDepts as $dirDept) {
echo '[' . $dirDept . '] ';
}
?>
</p>

<p class="dirOptions">Displaying the following Options:<br />

<?php
foreach ($dirOptions as $dirOption) {
echo '[' . $dirOption . '] ';
}
?>
</p>

<?php
if (in_array('showSort', $dirOptions)) {
?>

<form action="/"method="post" id="sortDir">
<select name="sortDir" onchange="this.form.submit()">
<option value="displayname" selected="selected">First name</option>
<option value="sn">Last name</option>
<option value="department">Department</option>
</select>

</form>

<?php }
//echo $directoryList;

?>

<div class="directory">
<?php echo $directoryList; ?>
</div>
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 2
Accepted Answer Pending Moderation
0
Votes
Undo
Hi Daniel Murphy,

Could you please paste the code you add to custom HTML module ? I will try to replicate the issue from my side and bring you with some suggestions :)

Gardner.
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 3
Accepted Answer Pending Moderation
0
Votes
Undo
Hi Daniel,

I did see your question before data was lost and sorry for late reply. I will investigate on your question and try to give you best solution.

Gardner.
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 4
  • Page :
  • 1


There are no replies made for this post yet.
However, you are not allowed to reply to this post.