expand

jQuery expand/collapse hierarchical table row

Hi, I am looking for an efficient way to expand/collapse hierarchical table rows using jQuery. The problem is, that the expand and collapse functionality differs. Initially, only rows with class level_0 are show, all other rows are hidden. expand should only show the next level, so clicking on row id=10 should only make rows with id=1...

Looking to build an expand on hover/contract on blur div

Hey all, I've been beating my head against the search engine walls for a couple hours now and figure I might as well just ask... I need to build a div that is one size on blur, say 300x30, that expands to 300x300 on hover and pushes all content below it down and will revert to the 300x30 size when blurred ("no longer hovered" or whateve...

expand and close tableview cell

from my experience in this forum when i ask for something starting with the word "simple" it turns out to be REALLY difficult after all! at least for a noob like me. what i would like to do: tap on a cell and expanded below to show more information in that cell. tap on an already expanded cell to "restore" it back to its original "n...

Need some help building an expanding div

I need a expanding div where it initializes showing only the top 30x960 of a 300x960 image along with an 'expand' button in the upper left. Clicking on the expand button will 'slide' the div down to reveal the full image of 300x960. Clicking anywhere else, whether it's expanded or contracted, will take the user to an advertisers websit...

Expand object oriented code

Are there any tools that will expand object oriented code so there is no sharing of any kind? For example if I have two classes A and B which inherit C then the tool would adjust classes A and B to no longer use C. It would also be nice if the tool did this and it still compiled and produced the same results. I think the main difficulty ...

[ExtGwt-Gxt] RowExpander With Dynamic Content

Hi All, I want to create a grid with a RowExpander. The problem I am facing is that each row has different information to be displayed in the expanded area. For example, each row represents a subject and the expanded area displays the grades related to this subject (exam1, exam2, etc.) as follows: +math exam1 Excellent exam2 ...

Why does this cause a syntax error?

Hello, In python, I wrote this: bvar=mht.get_value() temp=self.treemodel.insert(iter,0,(mht,False,*bvar)) I'm trying to expand bvar to the funtion call as arguments. But then it return, File "./unobsoluttreemodel.py", line 65 temp=self.treemodel.insert(iter,0,(mht,False,*bvar)) ^ ...

Jquery Accordion Expand All Collapse All (Solved!)

I was looking for a way to include an "expand all" and "collapse all". I've updated the demo with the new code using a simple jquery accordion. The original code should be credited to Ryan Stemkoski at http://www.stemkoski.com/stupid-simple-jquery-accordion-menu/ Demo: http://jsbin.com/ucalu3/5/ $(document).ready(function() { $('.q...

[iPhone app] Dynamic expandable UITableView with sections

Hello, I am currently creating a UITableView with expandable/collapsable sections. I get data from the Internet in JSON format, storing it in arrays just like this : {Section 1 {s1 data 1, s1 data 2, ... }, Section 2 {s2 data 1, s2 data 2, and so on}} Sections can be alphabetical letters, year number or whatever. I create my table v...

Parent div expand to child div

Hi, I am having a problem here with expanding parent div to fit child div. Here's my code: <div id="contentBlock"> <div id="content" style="position: absolute; width: 740px; z-index: 4; left: 70px; min-height: 64%; top: 16%; height: auto"> z<br /> z<br /> z<br /> z<br /> z<br /> z<br ...

WPF - Prevent Autoresize of ListBox on new Databinding?

Hey all, I currently have a window with a listbox within in. The listbox shows the results from a search. The problem I currently have is that when a search is performed and enough items are added to the listbox, the listbox expands vertically and forces the form to expand vertically as well. I know I can fix this with a maxheight, b...

How can I get a wxFrame to refresh without having to manually resize it in wxPython?

I have a simple frame in a wxPython script that isn't refreshing like I'd like it to. Basically the frame starts out blank. The user can then select different datasets to view in a grid form. When the dataset has been chosen, the script creates a grid and puts it in a sizer in the frame. The problem is that the frame shows the grid in a...