Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
5answers
4k views

chained msi's/Bootstrapper/prerequisite?

I have a few component msi packages that need to installed together to form the end application. The problem is: the components that make up the package can be updated and the component relaunched ...
5
votes
1answer
203 views

What's the motive behind Chained Package clauses in Scala?

Chained package clause were introduced in Scala 2.8, as described by Martin Odersky on the Scala site. I don't quite get the intuition behind this. Following was the example in the Scala book for the ...
3
votes
3answers
1k views

How to chain TFS builds?

I have a scenario where I want to call one TFS build from another, the first one does the build and the second one does staging. This will allow me do multiple custom staging for the same solution. I ...
2
votes
2answers
985 views

Apply jquery selectbox style on chained selectbox

I have created a pair of chained selectboxes in my page. The second selectbox is filled with a set of values, depending on the first box's selected value. The script that makes the two selectboxes ...
1
vote
0answers
51 views

Error 1730 (needs admin rights) when uninstalling chained msi on Vista/Win 7

I have created an installation using basic MSI in Installshield 2012. I am using the chained MSI technology (supported in Windows installer 4.5 and onwards). My installation is structured with a ...
1
vote
0answers
117 views

PayPal Payflow Pro with Chained Payments

I integrated PayPal Chained Payments API into a website. Now I wonder if there is any way to connect that with PayFlow Pro, for not having the roundtrip to PayPal's site. I think for security reasons ...
1
vote
1answer
291 views

How to chain animation in android to the same view?

I got some textview and I want to make the buzz efect of msn. Well my plan is to take the view let say 10dip to the left take him back at start position,after that take him 10dip up, than back , down ...
1
vote
1answer
438 views

codeigniter mulitple LIKE db query using associative array- but all from the same column name…?

I'm trying to query my database using codeigniter's active record class. I have a number of blog posts stored in a table. The query is for a search function, which will pull out all the posts that ...
1
vote
1answer
92 views

Is is possible in jquery to submit a form and load another related page with a related form?

So, I have 4 pages in asp. The first one gets the data from a user and saves it in a session variable. The second one is used to upload a picture. The third one is used to crop that picture (and ...
1
vote
1answer
751 views

how to create a chain select form in cakephp

My business directory application calls for 3 chained select boxes, and I'm using cakephp to build this application. The hierarchy and order of choices for the sections is this: 1 - business group ...
1
vote
1answer
1k views

javascript - multiple dependent/cascading/chained select boxes on same form

I'm populating select box options via jquery and json but I'm not sure how to address multiple instances of the same chained select boxes within my form. Because the select boxes are only rendered ...
0
votes
0answers
21 views

How to charge VAT using PayPal chained payments api

We have a marketplace application using paypal chained payments to sell items in the marketplace. For users in certain states we need to charge VAT. I can't find any reference to taxes in the API. I ...
0
votes
0answers
37 views

JQuery. Problems with IE8

I am using jquery-1.4.2.min.js and one more script jquery.chainedSelects.js I am having a web page consisting of an autocomplete search box and chained combo boxes for Country,State and City. The ...
0
votes
1answer
128 views

Chaining multiple select box options to a single select

I am using a modified version of the jquery plugin jquery.chained.js to filter out select box options and checkboxes based on another value of a select box. However, now I am needing to filter a ...
0
votes
0answers
96 views

PHP JS Chained Select Menu Error Line 21 only in IE8

thank you in advanced for any assistance. IE8 is throwing an error on line21 of chainedmenu.js of the chainedselect menu. Here is the top part of the chainedmenu.js file: // Chained Menu // ...
0
votes
0answers
42 views

Chained list with UIViewController

When I run my app the first view is a tableView with general information. I select one cell to access the details of each general information. DescriptionViewController *description = ...
0
votes
0answers
97 views

cakephp and paypals chained payments

I'm in the process of learning about the cakephp framework - I've built a couple of simple things but now am aiming at something more complex involving the use of paypal. Thing is I haven't ...
0
votes
1answer
441 views

openssl: No certificate matches private key / chained certificate

I am getting this error while binding a chained certificate with a private key: "No certificate matches private key" the command I use is the following: openssl pkcs12 -export -in ...
0
votes
1answer
119 views

Chained Select Menu - js error line112 - cannot find this problem anywhere else pls help!

Hello I am using Dynamic Drives Chained Select Menu. It works to a point. I am only using two select boxes. The first one populates fine with the options, however only the first option will ...
0
votes
0answers
180 views

Javascript Chained Selects. Uncaught TypeError: Property of object [object DOMWindow] is not a function

All, Have been having some issues with getting a chained selection program to run with Google Chrome. I wont copy all of the source but if you download the files (zipped) from here: ...
0
votes
1answer
91 views

Chained dropdownbox not working in latest jquery version

I had an excellent function to populate a resort dropdown box after selecting the country. Now, with jquery 1.6 the resort dropdown box is not populated anymore. Does anyone knwo what is causing it. ...
0
votes
1answer
384 views

Chained select boxes using jquery and json

In the current web app which I'm working, I would like to populate 4 select boxes using chained filtering. Here's the json structure were's defined the relationship between the options available on ...
0
votes
2answers
412 views

jQuery ajax chained selected not working (Darn you IE!) but works perfectly in FF

I have a form where the user enters a 6 digit number and clicks the retrieve button. An ajax call is performed which returns another form of data (no page refresh). Within the data returned is a ...
0
votes
0answers
26 views

How can I get real value in Chained Menu?

I am using Dynamic Drive DHTML Scripts- Chained Menu. I installed and worked it. No problem. I can read choices from the cookie in my result page as : 1, 3, 6, 10. But I want real value as : CAR, ...
0
votes
1answer
142 views

about cacade foreignkey in django admin page

My model is like below: class Manufacturers(models.Model): name = models.CharField() class Phones(models.Model): manufacturer = models.ForeignKey(Manufacturers) name = models.CharField() ...
0
votes
1answer
237 views

Trying to create a 6 level combobox that uses JSON on the backend

I have been looking at a lot of combo boxes but have yet to see one that uses JSON on the backend or one that is more than six fields. I was trying to use ...