cascadingdropdown

Access form cascading combo box shows nothing in drop down menu

别说谁变了你拦得住时间么 提交于 2019-12-12 04:35:23
问题 I am trying to create a data entry form with cascading combo boxes to limit the users options. I had it working for a bit, then it decided to quit. I could just be overthinking it all though. There are going to be about 50 boxes that I will have to set up. The first is a one to many. I got the first box to add to a new record correctly. When I get to the second combobox, the dropdown menu shows nothing. It's fine until I enter [forms]![NewSpecForm]![cboBoxSize] in the criteria. How do I

Selecting Multiple Options in Selection Boxes and Getting Results From Database?

依然范特西╮ 提交于 2019-12-11 20:44:47
问题 I have made a webpage for a school project where I have a series of selection boxes (some are independent and some are depended on another) to make selections and then apply filter to make a query. It is still in test-mode and working fine for single selections. You can find the webpage here: http://gorevler.awardspace.biz/realdeal03.html For example, when I select Europe from Region, Austria from Country, Plastics from Sector, Plastic Raw Materials from Sub-Sector and Polybutylene from

Rails 3.1 Dependent / Cascading Dropdowns

馋奶兔 提交于 2019-12-11 19:32:26
问题 I am getting to grips with Rails 3.1, and I am hoping that someone can point me in the direction of a Gem that will allow me to use dependent selects on a form (or indicate how this is best done in Rails 3.1). I have come across the chained_selects plugin, but that seems to rely on prototype, so it is not ideal in 3.1. The simplest example of this is car makes/models: I have 3 models: vehicleMake, vehicleModel and vehicleTrim. I also have assignment tables vehicleMake_vehicleModel and

cascading dropdown loses select items after post

江枫思渺然 提交于 2019-12-11 18:09:24
问题 I have an MVC3 razor project, which I am trying to build using multiple reusable elements. I have many model classes like the following public class ProductCreateModel { [Required] [Display(Name = "Org")] [UIHint("MyOrgsDropDown")] public string orgName { get; set; } [Required(ErrorMessage = "Select an account")] [Display(Name = "Account")] [UIHint("MyAccountsDropDown")] [AdditionalMetadata("orgFieldId", "orgName")] [AdditionalMetadata("fieldId", "accountName")] public string accountName {

Second Dropdownlist is not filtering

谁都会走 提交于 2019-12-11 17:02:02
问题 I am making an application , that allows the user to select a service from a list of services and an employee from a list of employees. When a user selects a service , the dropdownlist for the employees must automatically filter to show the employees that can perform that service or have that skill. For example if a customer selects a haircut , only employees whose skill is a haircut must filter into the dropdown list. I will show you my code , note : i do not want to create a relationship

xls cascading lookup based on pivot table style datasource?

怎甘沉沦 提交于 2019-12-10 11:57:03
问题 Assuming dataset looks like Country Region Product UK North fdhlw46 UK North fdhlw47 UK North fdhlw48 UK North fdhlw49 UK North fdhlw50 UK South fdhlw51 UK South fdhlw52 UK South fdhlw53 UK South fdhlw54 UK South fdhlw55 UK South fdhlw56 UK South fdhlw57 UK West fdhlw58 UK West fdhlw59 UK West fdhlw60 UK London fdhlw61 UK London fdhlw62 USA New York fdhlw63 USA New York fdhlw64 USA New York fdhlw65 USA New York fdhlw66 USA Chicago fdhlw67 USA Chicago fdhlw68 USA Chicago fdhlw69 USA Chicago

KendoUI cascading dropdownlists, need value from 2 dropdownlists.

我的梦境 提交于 2019-12-10 11:09:19
问题 I have 3 cascading dropdownlists as follows: <p> <label for="categories">Catergories:</label> @(Html.Kendo().DropDownList() .Name("categories") .OptionLabel("Select category...") .DataTextField("CategoryName") .DataValueField("CategoryId") .DataSource(source => { source.Read(read => { read.Action("GetCascadeCategories", "ComboBox"); }); }) ) </p> <p> <label for="products">Products:</label> @(Html.Kendo().DropDownList() .Name("products") .OptionLabel("Select product...") .DataTextField(

MVVM binding for cascading DropDownList

我的梦境 提交于 2019-12-10 05:32:14
问题 I have a web page with two kendoDropDownList using cascading. The first are States and the second Cities . When you choose a State then you are able the City to choose from the second DropDownList . This works perfectly well if I pick them using the mouse. The problem is when I try to bind some data to these DropDownLists where the State is updated but not the City . This is the HTML of my page: <div id="container"> <input id="state" name="state" data-bind="value: state"/> <input id="city"

How to make cascading dropdown in a Angular Reactive Formarray work without messing the dropdown value

依然范特西╮ 提交于 2019-12-10 03:31:40
问题 I have a form in angular 4 that containing First Name + Last Name and a formarray containing 2 dropdown(select) working as cascading dropdown and a delete button. The rest of the form also contains a send button and a add option button. I added a screenshot down here for you to understand better. The forms add , remove button and send button works there is 1 problem the cascading dropdown works only when there is 1 cascading dropdown ,when I add an extra cascading select the value from

How to pass an additional parameter to CascadingDropDown ServiceMethod?

别来无恙 提交于 2019-12-08 13:35:22
问题 I have two chained CascadingDropDowns . Both are working fine. The thing is that in the underlying web methods which are supplying values for DropDwonList I need read one additional parameter. This parameter is needed for setting up the default item for dropdownlist. I do not know how to pass that parameter or read it. I've read on the Internet about the ContextKey property. But I do not know how to acces it from the WebMethod . I've tried to get to the session through HttpContext.Current