nested

remote jquery nested tabs

Hi I have nested tabs in jquery tabs which are pretty simple to do if we want static jquery tabs but what if we want nested tabs that the remote page should decide what would be the tabs. or in other words i want nested tabs in a remote page (or ajaxified) For example i m calling this page(remote page) through tabs <div id="containe...

C# Can generics be nested in a class definition

I'm doing something like this: public abstract class FolderNode<TChildNode,TChildBusObj> : Node where TChildNode : MappedNode<TChildBusObj>, new() where TChildBusObj : new() { .. } Is there a way of omitting TChildBusObj from the definition, but still be able access it in the code? E.g. I want to be able to infer the generic t...

Use of nested references in objective C

Getting an error message "Nested functions are disabled, use -fnested" etc in XCode/ObjC. Here's the code (balls is an NSMutableArray pointing at a bunch of UIViews). CGPoint pos=[[self.balls objectAtIndex:pointidx] center]; But the following seems to compile ok. UIView *ref=[self.balls objectAtIndex:pointidx]; CGPoint pos=ref.cent...

Nested Choices in a python program

I have a script that I wrote in python for testing out the sorting algorithms that I've implemented. The main part of the program asks the user to select on of the sort algorithms from a list. And then whether they would like to sort from a file of numbers or select a list of random numbers. I have it setup (i think) so that typing a num...

WPF ListView Nested Tables with Matching Columns

I have a business entity like so: public class Entity { public string Name; public string Description; public Entity Parent; public ObservableCollection<Entity> Children } I would like to bind a ListView to a collection of Enities and get a nested table out of it like this: http://leeontech.wordpress.com/2008/03/11/li...

Initializing nested structures without defining all fields

I have a set of structs, defined as follows: typedef struct { int index; int array[10]; } Item; typedef struct { Item A; Item B; Item C; } Collection; And I want to declare a variable of type Collection as follows: Collection collection = { { 1, 0 }, /* item A */ { 2, 0 }, /* item B */ { 3, 0 } /*...

recursive nested expression in Python

I am using Python 2.6.4. I have a series of select statements in a text file and I need to extract the field names from each select query. This would be easy if some of the fields didn't use nested functions like to_char() etc. Given select statement fields that could have several nested parenthese like "ltrim(rtrim(to_char(base_fiel...

accepts_nested_attributes only accepts attribute per model?

I've a model which has to accept two nested attributes, however I get the error undefined methodquoted_table_name' for ActiveRecord::Error:Class` Can a model only have one accepts nested attributes? I'm using build method in controller btw to pass nested attributes. ...

Rails nested form with has_many :through, how to edit attributes of join model?

How do you edit the attributes of a join model when using accepts_nested_attributes_for? I have 3 models: Topics and Articles joined by Linkers class Topic < ActiveRecord::Base has_many :linkers has_many :articles, :through => :linkers, :foreign_key => :article_id accepts_nested_attributes_for :articles end class Article < Active...

Self join without relations in Doctrine ORM

I have a class MenuItem act as NestedSet with many roots: MenuItem: actAs: NestedSet: hasManyRoots: true rootColumnName: root_id I want to retrieve a path from root to selected node. SQL-query for this is: SELECT m2.* FROM menu_item m INNER JOIN menu_item m2 ON m2.lft <= m.lft AND m2.rgt >= m.rgt WHERE m...

Use nested controller or declarative authorization for admin action?

Say, I've an app with multiple models:posts, blogs, todos etc and I want an admin to edit, delete all users posts, blogs, todos, do I create a nested admin controller for each or use declarative authorization to setup an admin account that can edit/destroy the users, posts etc? I understand this has no right answer, I'm just looking for...

Need help with table...aligning cells and input boxes

Hi, I am creating 1 of 3 nested tables within the <form> tag in my HTML document. I inserted input fields to create the text boxes to the right of the text. That all works my only problem is that the following cells: "First Name, Last Name, Address, City, State, Zip Code, and County" are not directly under one another in such a way as t...

ASP.NET MVC 1.0 Nested Masterpages

Hi, I have a problem with my master pages. They have such inheritance order: MainMaster1.Master can be nested by Nested1.Master, Nested2.Master, etc. At the same time MainMaster can be duplicated and have working copies like MainMaster2, MainMaster3, etc. Advise please how can I dynamically change the MasterPageFile of my Nested1, Nes...

How should i modify this SQL select?

SELECT TOP (5) mydb.Te.TeamGR AS TeamInGR, Te_1.TeamGR, SUBSTRING(mydb.Data.AkrivesSkor, 1, 1) AS GoalsIn, SUBSTRING(mydb.Data.AkrivesSkor, 3, 1) AS GoalsOut FROM mydb.Te INNER JOIN mydb.Data ON mydb.Te.TeamID = mydb.Data.TeamInID INNER JOIN mydb.Diorganoseis ...

Problem about nested escape character

I want to pass jquery command into eval() function but I have found that some situation is not work. For example, I have $('input[name="lastName"]').val("xxx"); Then I pass into eval function eval("$('input[name="lastName"]').val('xxx');"); eval('$('input[name="lastName"]').val('xxx');'); Because there are too many " or ' block i...

jQuery having problems selecting element from a loaded div

So I have a container div, within it, using .load I load some content from db, after the .load the result will be something like <div id="results"> <div id="a1" class="search-result"></div> <div id="a2" class="search-result"></div> </div> As I understand it, I should be able to select the nested div's by using $("#results .search-...

ReportViewer Nested SubReport

I have 4 reports Report A, Report B, Report C and Report D with datasources dsA, dsB, dsC and dsD respectively. Report A is a Main Report which has the subreport B has a subreport C ... The Report A fills the datasource dsB in the SubreportProcessingEvent with the parameter from ReportA. i would need an event which is fired for every ...

Link_to_remote with Nested Routes

I'm trying to figure out how to structure my path on a link_to_remote tag to accommodate nested routes. I have an article model that belongs to a group model, and the article has votes associated with it (using the Vote_Fu plugin). I created the code for articles first and it worked, but in the process of adding the group model and updat...

[Doctrine 1.1] Using moveAsLastChildOf to move nodes

For all of you who work with Doctrine, I've a question related to moveAsLastChildOf(). I'm using Doctrine 1.1.6 and Symfony 1.2 I have a nested tree, with lots of elements. I want to delete an element of the tree, so first I have to move all its children (and descendants) to its parent; and then delete it. I do the following: // Get th...

nested form_for singular resource

I have a singular nested resource like so: map.resources :bookings, :member => { :rate => :post } do |booking| booking.resource :review end Giving me these routes: new_booking_review GET /bookings/:booking_id/review/new(.:format) {:controller=>"reviews", :action=>"new"} edit_booking_review GET /bookings/:booki...