The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
45 views

echo result of dependent drop down in html table [closed]

Can anyone help me output the following into an html table? The code produces a 3 chained dependent drop down. When the third dropdown has been processed I want the sql query to be displayed in an ...
0
votes
1answer
16 views

JQuery UI two dependent sliders with different values

I have a little problem with the JQuery UI Slider. I want to make two sliders as described below First Slider - is the number of days from 1 to 365 Second Slider - the a percent from 5 to 30. For ...
2
votes
0answers
35 views

Naming convention for a property setter that change two properties values in python

I have a class with two properties, when i set a new value for foo i want that the value of bar also change, so i can go with something like this: class MyClass(object): _foo = '' _bar = '' ...
0
votes
0answers
83 views

Excel 2013 - Double dependent dropdown and VLookUp to create Sales Quote

Fairly specific problem in Excel. I am trying to create a dependent dropdown that is dependent on a dependent dropdown. I then want to use VLookUp to find the corresponding price of the combination of ...
0
votes
1answer
19 views

App crashing on heroku with :dependent => :destroy_all

Note everything works in local enviromnment This is the code PublicActivity::ORM::ActiveRecord::Activity.class_eval do attr_accessible :reference_type, :reference_id has_many :notifications, ...
4
votes
1answer
124 views

Dependent types in OCaml

There's a lot of information about dependent types in Haskell and Scala. For OCaml, not so much. Is anyone skilled enough to provide a coding example on how to achieve this in OCaml (if it's possible ...
0
votes
0answers
148 views

Drupal ajax dependent view exposed filter select field

The configuration: Drupal 7.20 Views 7.x-3.5 Better Exposed Filters 7.x-3.0-beta3+29-dev I'm trying to setup two exposed filter select fields so that the second one is changed depending on a value ...
2
votes
1answer
53 views

Generalized fold for inductive datatypes in coq

I've found myself repeating a pattern over and over again, and I'd like to abstract it. I'm fairly confident that coq is sufficiently expressive to capture the pattern, but I'm having a bit of ...
0
votes
0answers
58 views

Implementing Dependent drop-downs in Pods Framework?

Suppose I have two Pods - State and City. Suppose I have another Pod called Job Listing. When adding records to the Job listing inside the Wordpress Admin, the City drop-down needs to be populated ...
-1
votes
1answer
314 views

How to create dependent dropdown box in yii

I am working in yii framework. i want to create dependent dropdown box. First dropdown box is having categories which i am fetching from database. i have code for category dropdown box as- <div ...
4
votes
1answer
1k views

Primefaces dependent selectOneMenu and required=“true”

In my application I have three dropdown menu (p:selectOneMenu), say A, B, C. Among them two are dependent, say B and C. By changing the value of B I am dynamically loading values to C. Also there is a ...
1
vote
2answers
200 views

In a talend job, how can I add a dependent jar file?

I want to make use of the utility methods from a jar file, in my talend job routines. How can add this jar as dependent to my current job ?
1
vote
1answer
302 views

Dependent Multidrop down in Yii Framework

I want to make two drop down Select Group Select Members (multi Drop Down) When user select the first drop down (Group), i want to populate the Members Multidropdowen with the members of selected ...
1
vote
0answers
317 views

Dynamic programming: modified Knapsack

I am trying to solve a variation on the knapsack problem using dynamic programming: So what I have is a field of squares with dimensions: N*N (like a chessboard). On each square I have some values. ...
0
votes
0answers
20 views

What is a dependent type?

I came across this article Unifying Programming and Math – The Dependent Type Revolution, where an introduction to dependent types is given. After reading the article twice, I'm not sure if I get it. ...
-1
votes
1answer
99 views

2 SQL INSERTS depend on each other's result… what's the best approach?

I have a stocks table (for products/stocks of a retail store) and a serials table (barcodes issued for each stock) Basically when new stocks are introduced to the databases, the system issues a ...
1
vote
1answer
99 views

Stack level too deep when trying to destroy a child record

I'm trying to destroy a record that belongs to a parent record. However Rails won't let me do it because of a stack level too deep error. My classes (simplified) are built like this: class Album ...
-1
votes
1answer
153 views

microsoft excel add inter dependent cells

Is there a way to add two cells in Excel where one is calculated based on what is entered in the other? Basically something like a value and percentage field where the original base value is provided. ...
0
votes
1answer
502 views

backbone.js dependent fieldsets and dropdowns

I'm working on a project where I have dependent fieldsets and dropdowns, and I'm wondering if backbone.js is a good way to go about this. The setup is like this: -fieldset A with dropdown A1 ...
0
votes
0answers
71 views

when combo box selection is null set dependent text box to null

I have a combo box *CboInst*on a form who's row source is a query that contains the fields: [Instructor] and [Inhouse] from the Class_Catalog table. On the 'Change' event of CboInst I have the ...
2
votes
0answers
127 views

xcodebuild build xcode project with dependent project failed. dependent project's target not found

My main project named sample.xcodeproj dependends on sdklib.xcodeproj. The target of sdklib.xocdeproj is sdk.a. when I build the sample.xcodeproj with xcodebuild command xcodebuild -project ...
0
votes
1answer
226 views

Dependent input text codeigniter

Hi am working with codeigniter and i want to make dependent input text like this example below: i have three fields numberphone, Name, Society and i want to auto fill Name and Society when the user ...
0
votes
0answers
77 views

xcode multiple targets & dependent frameworks

I have a cocoa application which has 3 dependent frameworks. For re-branding purpose, I duplicated the application target (target1, target2) and changed the product name, bundle ID & copyright ...
0
votes
1answer
100 views

Dependent JAR and Source JAR?

What is a dependent JAR and what is a source JAR ? Why are they needed ? I saw it in the sentence: Dependent jars can be found in the libs folder and the corresonding source jars can be found in the ...
0
votes
0answers
24 views

Are native code mobile apps only workable on one kind of CPU?

"Skinning out" native code apps with Java interfaces might not be so smart . . . I'd expect different CPUs - or at least CPUs of different manufacturers - to have different machine code instruction ...
0
votes
1answer
431 views

multiple interdependent javascript files in one html file

I do not believe this question has been answered so here it goes. I have two javascript files (file1, file2). File1 uses a class defined in file2. Am I able to reference these files from an html file ...
0
votes
1answer
470 views

Two dependent spinners

The items of the first one are defined in xml (<string-array>) but the second one should present different items arrays of strings according what is selected on the first... The possible array ...
0
votes
1answer
105 views

Dynamic Depending Lists in Separated WorkSheets in VBA (2)

I'm working with 7 dynamic dependent lists, and I thought the best way to automate the process and avoid to arrange anything in a future if I modify the lists was a VBA code. The VBA code that I ...
1
vote
1answer
315 views

Dynamic Depending Lists in Separated WorkSheets in VBA

I'm not really expert in VBA and I have a problem with my code and I don't know how to solve it. (The code is from: ...
0
votes
0answers
63 views

How to blend two dependent repositories data to create a single UI model in MVC

I am working on a MVC project with Repository pattern and ran into a situation very common in applications. I have a View that displays Customer information and uses Customer and Account repository. ...
1
vote
1answer
120 views

How to get parameters from a “dependent” dialog

In my XUL application, I open a dialog window, by this code: var win = myWindow.openDialog("chrome://mywindow/content/mydialog.xul", "Dialog creation", "chrome, ...
1
vote
0answers
293 views

2 Dependent jQuery-UI Sliders

I'm trying to develop a loan simulator using 2 jQuery-UI Sliders. The 1st slider (prazo) represents the length of the loan in months The 2nd slider (mensalidade) represents how much you'll be paying ...
0
votes
1answer
48 views

SVG: make an element's property dependent on a property of another element

I have a simple SVG tree where I want the x property of rect2 to be dependent (referencing) on the width of rect1: <rect id="rect1" style="fill:black" x="35" y="0" width="30" height="40" /> ...
3
votes
2answers
206 views

What is dependent typing?

Can someone explain dependent typing to me? I have little experience in Haskell, Cayenne, Epigram, or other functional languages, so the simpler of terms you can use, the more I will appreciate it!
2
votes
2answers
146 views

Manage plugin order and dependency

everyone I am working on a plugin model on .net framework which is based on MEF or unity. The problem is I haven't found a solution to order plugin execution. Suppose there exists an execution ...
0
votes
1answer
941 views

Dreamweaver Keeps Getting Dependent Files

I installed Dreamweaver and when I was downloading the dependent files from my website, it asked me if I always wanted to do this. I said yes, and now, a couple weeks later, I don't want that anymore ...
2
votes
1answer
196 views

Ruby on Rails: Better approach to delete related models

I have the following classes/relationships defined: class Component < ActiveRecord::Base has_many :component_stories,:dependent => :destroy has_many :stories, :through => ...
0
votes
1answer
180 views

From: jquery multiple select option dependent

I know how to setup jquery so that if one select option is chosen, then options within another select can be disabled: e.g. $("#div1").change(function(){ if ($(this).val() == "100" ) { $("#div2 ...
0
votes
1answer
93 views

PHP Function Dependent on presence of MySQL data entry

I code a weekly trivia program for one of my clients through facebook. I have a bit of code commented out where we display the winner when we need to. Currently I just remove the comment brackets and ...
0
votes
1answer
45 views

Effect of mutually dependent targets in Xcode 4?

In my project, I have my main target (The one with all my product code). Halfway through the project I created another target to hold unit tests. I have made my main target dependent on the unit ...
3
votes
2answers
465 views

What happens to objects passed between dependent PHPUnit tests?

This isn't so much a question as an attempt to save somebody else the hour I just wasted on PHPUnit. My problem was that my mock object, when used in a dependent test, was not returning the expected ...
3
votes
1answer
1k views

Validate a field depending on another field value in Symfony

I have two related fields in a Symfony form: object_status and cryopreservation_method. The first one cannot be null and stores one of three possible choices: liquid, solid or cryopreserved. The ...
0
votes
1answer
155 views

Initialize dependent object in simple unidirectional OneToOne mapping

I have a problem with a simple unidirectional mapping. Here are my entities: @Entity public class Account extends UUIDBase { private Profile profile; @OneToOne(cascade = CascadeType.ALL, ...
1
vote
2answers
7k views

Excel dependent dropdown lists (With/without VBA)

I'm completely new to VBA, even though I'm quite familiar with regular VB. I don't know if this has to be done through VBA, or if it can be done with built-in Excel functionalities. Basically, I have ...
0
votes
1answer
217 views

How to make has many through polymorphic associations dependent in rails 3?

I have a polymorphic relationship in rails 3 and i am trying to make the through table dependent. What is the best way to handle that?
0
votes
1answer
152 views

How can i make a polymorphic connection be dependent?

I am trying to make my image_maps get destroyed when either a product or image is deleted. Here is the code. class ImageMap < ActiveRecord::Base belongs_to :imageable, :polymorphic => true ...
2
votes
1answer
482 views

Jquery autocomplete with dependent search values. How?

I was wondering if there is any way to use autocomplete with multiple param:true and to change dynamically the source based on the user selection. For example: The user types the letter ā€˜C’ and the ...
3
votes
5answers
2k views

Dependent UIPickerView

Does any one know how to make dependent UIPickerView. For example when i select row 2 of component one the titles for component two change? I have looked on the internet there is no real answer, i ...
0
votes
2answers
246 views

dependent property does not change when changed via the view setter of a listview during design time

[Category("SomeCat")] [Description("Gets or sets how items are displayed in the ShellListView control.")] [DefaultValue(View.Details)] new public View View { get { return base.View; } set ...
2
votes
1answer
173 views

How to remove object from database when it's not referenced anymore in jdo? (n:1 relationship)

I have the class "Character" and the class "Faction". A character has a faction. A faction can be used by many characters. The factions get persisted when the character is persisted. When there is no ...

1 2