Re: Help with Ajax toolkit drop downs Programming Web Development by smithsf22 …am trying to do. The ajax cascading drop downs work great. But I a, using a third…the html for the page. The original drop downs generated by the third party are not ajaxed… all and replace them with new ajax drop downs. This works so far. Now the problem …party checks to see if the original drop downs have been selected before you can save. and… Help with Ajax toolkit drop downs Programming Web Development by smithsf22 … the Ajax toolkit with VS 2005 to fill some drop downs through a web service and it works great. All of… the cascading drop downs work correctly. The only problem I have is I need… to copy the drop downs value from each cascading drop down into a hidden drop… PHP to pull multiple table info from MYSQL db into select drop downs Programming Web Development by dominic.ceraso.9 … these columns - the end result is to have 4 drop downs where the end user will select one item from each… = itemID | productFK (foreign key) | tsORtd So i need 4 drop downs that pull from each seperate table for instance drop down… Two drop downs with image Programming Web Development by myth3_16 …> [/CODE] This is the page that loads both drop downs. [CODE] <? //set IE read from page only not read… PayPal Drop downs with price options Digital Media Digital Marketing by greenglow …. I used the PayPal button maker to create the drop downs but the amount and quantity did not carry over-every… Re: PayPal Drop downs with price options Digital Media Digital Marketing by greenglow I solved the problem. The answer was using a non-hosted clear text version of the code, removing the "Remove Code Protection".line. Hosted means that specific variables are stored on the PayPal Servers which in turn makes these variables tamper proof. Then the basic adjustments "took" and the drop downs work perfectly. jsp drop downs regarding session Programming Web Development by koushikroy1989 … from you on the following issue. I have two drop downs on a jsp page.On the selection of the first… Dynamic Chained Drop Downs using mySQL and PHP Programming Web Development by lowtekotc … doing a system that has information about cars. My drop downs are populated with MySQL data (working ok) I want to… Cannot Populate Multiple Drop downs Programming Web Development by Sahishnu My php code to populate drop downs look like this: <head> <title>STOCKINSERT&… Using Multiple PHP Drop Downs To Filter MySQL Table Programming Web Development by JamieBek04 …. I need help pulling $_POST requests from my remaining drop downs and coming up with code that will filter through my… Re: Help with Drop Downs and Grid View Programming Web Development by edouard89 …. Instead. The gridview is dependant on both of the drop downs, either one or the other, is there a way that… is trigered after the selection in one of the drop downs but I dont know how I would start on this… Re: Help with Drop Downs and Grid View Programming Web Development by Infarction You'd probably want to do a postback when the first (and second) drop-downs change and update the next field accordingly. If you don't want it to refresh the whole page, you'd likely be looking at some AJAX. Re: Help with Drop Downs and Grid View Programming Web Development by Infarction I haven't really thought this through, but you could have handler for each of the drop downs to do a postback updating the grid view as necessary. Re: tips for mulitple drop downs Programming Web Development by soapyillusion … the database results say, the option selected in individual drop downs will change. While ones not in the database will remain… Re: Kids' Hand-Me-Downs Now Big Internet Business Digital Media Digital Marketing by LastMitch >Kids' Hand-Me-Downs Now Big Internet Business It's a nice article to promote **ThredUP**. It's kind alike a online mini-Ebay that sells kids clothes. I read some good and bad review how the companies operates. Re: Help with Ajax toolkit drop downs Programming Web Development by DangerDev hi with each ajax request when you are filling your dropdown you also create hidden value node using dom apis. use api -document.creatElement('tag_name'); to create tag -document.getElementById('idofparent'); to get parent element where hidden will reside -parent.appendChild(child_node); to add child hidden node to parent. Re: PHP to pull multiple table info from MYSQL db into select drop downs Programming Web Development by pritaeas https://www.daniweb.com/web-development/php/code/476623/ajaxed-linked-dropdowns-select-fields-for-volatile-data Re: PHP to pull multiple table info from MYSQL db into select drop downs Programming Web Development by Bile -->>Hi dominic.ceraso.9,I hope the following link will help you as it helped Me.Andre provided all the information wich I think is what you are looking for.[Check this out](https://www.daniweb.com/web-development/php/threads/480556/listbox-onchange-event-to-trigger-php-function-) Re: Two drop downs with image Programming Web Development by Luckychap for second select option write a event-handler for onchange event. like : [code='html'] <select onchange='showImage(this)'> . . . </select> <div id='img-div'></div> [/code] js code: [code='javascript'] function showImage(selEl) { var totalOption = selEl.options.length; for(var i = 0; i<totalOption;… Re: Two drop downs with image Programming Web Development by myth3_16 thanks for that, how does it know where the images are? in the database the url for the pic is stored in a field called imgurl. would it be possible if this can be incorporated to actaully show the correct pic. I am going to try your code now. Re: Two drop downs with image Programming Web Development by Luckychap You have to specify the path of the image. You have 2 options: 1. fetch the paths from database or 2. manually write the path for all the images. Re: Two drop downs with image Programming Web Development by myth3_16 how do i do this, i am a relative newbie to this area Re: Two drop downs with image Programming Web Development by Luckychap Fetching paths from database would little lengthy, so its better to set the path manually: [code='javascript'] var imgArr = new Array(); //width, height are the width and height of the image imgArr[0] = new Image(width , height); imgArr[0].src = "path/of/your/image1"; imgArr[1] = new Image(width, height); imgArr[1].src = "path/of/… Re: PayPal Drop downs with price options Digital Media Digital Marketing by preciousoil It's not clear what you actually removed from the code shown? I want a similar, though simpler, button to allow different monthly subscription choices & have the same problem that no matter what choice is made the amount in PayPal defaults to the lowest rate, (although the description will be correct). Can you please clarify what … Re: jsp drop downs regarding session Programming Web Development by kalpanakovuru Hi Koushik, Below code is to set the session [B]//This code goes in server side (servlet).[/B] [code]HttpSession session = request.getSession(true); //create a session object session.setAttribute("key", "value"); [/code] [B]//This code goes in client side (jsp).[/B] [code]// this will return the value in session String… Re: jsp drop downs regarding session Programming Web Development by javaAddict [QUOTE=kalpanakovuru;1395632]Hi Koushik, Below code is to set the session [B]//This code goes in server side (servlet).[/B] [code]HttpSession session = request.getSession(true); //create a session object session.setAttribute("key", "value"); [/code] [B]//This code goes in client side (jsp).[/B] [code]// this … Re: Dynamic Chained Drop Downs using mySQL and PHP Programming Web Development by diafol Few things. Don't use short tags: [ICODE]<?= ... ?>[/ICODE] use [ICODE]<?php echo ...; ?>[/ICODE] instead. Although it works, using double quotes about attribute values and using lowercase tag selectors should ensure your html can validate in a number of !doctypes: [ICODE]<SELECT name=make>[/ICODE] could be [ICODE]<select … Re: Dynamic Chained Drop Downs using mySQL and PHP Programming Web Development by vaultdweller123 it's not possible to call the function buildModels(); from the javascript events onChange because it's a php function, and php is a server-side, it requires page load, unless you use AJAX. Re: Dynamic Chained Drop Downs using mySQL and PHP Programming Web Development by lowtekotc Hi all, I will fix my standards issues with the poor coding. Also! I fixed the problem and got it working. I had to learn and use AJAX like you all suggested and everything is working perfectly. Re: Cannot Populate Multiple Drop downs Programming Web Development by hericles The simple stuff first: Does this "select code, name from hvomaster where TYPE=1" actually return a populated result set? I.e. is there data to put into the drop down?