Ok,
http://dukey.gdd.net
login/pass is guest/guest
I'm working on a new interface for my open source project - a syslog
search and reporting tool.

Forgive the ugliness, it's still in alpha :-)
Each of the sortable boxes are part of a form, the boxes are supposed
to have a resizable option (and did for a while, but I must have done
something wrong somewhere along the way).

Here's some sample code:
<form action="<?php echo $_SERVER["PHP_SELF"]; ?>" method="GET" name="results">
<div class="ui-layout-center">
<!-- Start Column 1 -->
  <div class="column">
    <div class="portlet">
      <div class="portlet-header"><?php echo $hostcount ?> Hosts</div>
        <div class="portlet-content">
      <select name="hosts[]" id="hosts" multiple size=3>
      <?php
      foreach($hostarray as $value) {
          echo "<option>".htmlentities($value)."</option>\n";
      }
      ?>
      </select>
        </div>
      </div>
...

<script type="text/javascript">
// -------------------------
// This adds the dropdown list search filtering tool
// -------------------------
$('#hosts').droplistFilter();
$('#programs').droplistFilter();
$('#facilities').droplistFilter();
// -------------------------
// This makes the front page select boxes resizable
// -------------------------
$(function() {
$("#hosts").resizable();
$("#programs").resizable();
$("#facilities").resizable();
$("#priorities").resizable();
});



On Fri, Dec 4, 2009 at 9:40 PM, Richard D. Worth <[email protected]> wrote:
> It's going to be hard to help if all we can see is a screenshot. Please
> share a live sample page. Preferably a minimal test case. If you don't have
> a place to host one, use jsbin.com:
>
> http://jsbin.com/
>
> - Richard
>
> On Fri, Dec 4, 2009 at 5:57 PM, Clayton Dukes <[email protected]> wrote:
>>
>> Somehow I screwed something up and now the little arrow to resize my
>> div is appearing way outside the id it's tied to.
>>
>> Can someone 'splain to me how to get it back home...it misses it's home
>> :-)
>> Here's a screenshot:
>> http://php-syslog-ng.gdd.net/screen.png
>>
>>
>>
>> --
>> ______________________________________________________________
>>
>> Clayton Dukes
>> ______________________________________________________________
>>
>> --
>>
>> You received this message because you are subscribed to the Google Groups
>> "jQuery UI" group.
>> To post to this group, send email to [email protected].
>> To unsubscribe from this group, send email to
>> [email protected].
>> For more options, visit this group at
>> http://groups.google.com/group/jquery-ui?hl=en.
>>
>>
>
> --
>
> You received this message because you are subscribed to the Google Groups
> "jQuery UI" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> For more options, visit this group at
> http://groups.google.com/group/jquery-ui?hl=en.
>



-- 
______________________________________________________________

Clayton Dukes
______________________________________________________________

--

You received this message because you are subscribed to the Google Groups 
"jQuery UI" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/jquery-ui?hl=en.


Reply via email to