Questions tagged [multiple-value]

172 questions
1
vote
1 answer

Passing multiple view parameters to a converter for an entity with a compound primary key

How do you write a converter for an entity with a compound primary key? I want to edit the entity with a URl such as `\edit_representative.xhtml?emp_id=12345&project_id=45 I'm using Omnifaces so I have something like this for single primary…
jeff
  • 3,618
  • 9
  • 48
  • 101
1
vote
1 answer

Passing two array variables into single loop

I've searched and searched on here for an answer, and I think the combination of being a noob at bash, not knowing the right way to do this, and not searching for the right keywords has meant I can't quite get over the last hurdle. I'm writing a…
danpez
  • 13
  • 3
1
vote
2 answers

Suppressing multiple values in Microsoft SQL

Below is an example of code that I have, and I would like it to print a user's account number along with a each procedure number and the sequence number that shows up for that appointment, for example: acc num proc num Seq…
Rich
  • 49
  • 8
1
vote
1 answer

How to get multiple values from single textarea?

I want to enter and get multiple values from a single textarea. Like when we share something on facebook it allows us to enter multiple friends in a single textarea. And then share the post to all we have entered. How can i do this? And I am using…
Faiqa
  • 155
  • 11
1
vote
2 answers

How to make a dictionary, in which multiple values access one value(Python)

I want to make a Python dictionary. I want values like 0.25, 0.30, 0.35 to be keys in this dictionary. The problems is that I have values like 0.264, 0.313, 0.367. I want this values to access the keys e.g. I want every value from 0.25(inclusive) to…
Borut Flis
  • 15,715
  • 30
  • 92
  • 119
1
vote
3 answers

multiple column values in mysql

I need to make a table 'Movies' which will have columns: ID Title Description Category etc And another one called 'Movie_Categories' containing, for example ID Category 1 Action 2 Adventure 3 Triller but since category in table Movies…
Marko
  • 1,337
  • 5
  • 18
  • 37
1
vote
1 answer

Oracle Procedure and multi value of optional param

I'm writing a procedure on Oracle. I need to use it for a search. The form search have 8 params, each params can contains many values. For exemple you can add two movies title (you can choose to not type whole title). you also can tyoe a year and…
1
vote
1 answer

Excel 2007 (Conditional Formatting) AND & IF

I hope you can help me on this issue. I am currently using Excel 2007 and I am creating a dynamic Planning/Time Sheet for our Team. So far everything is going well. Now unfortunately I am having an issue with the Conditional Format. I am formatting…
1
vote
2 answers

MySQL SELECT rows which respond to specific MULTIPLE values in one of the columns

I've looked all over the Web, and in StackOverflow as well, and have found many similar topics, but none that answers specifically my needs. So I'm sending this out there, knowing there's probably some little thing I'm missing in order for it to…
QuestionerNo27
  • 610
  • 6
  • 14
  • 30
1
vote
1 answer

Codeigniter passing multiple checked parameters back to the view

I new to CI, and in doubt of how to passing params, my scenario is: 1) A form with multiple checkbox, seen as online_booking.php, user would checked multiple options. 2) User click button to call jq ajax post in json, this will get the callback…
conmen
  • 2,377
  • 18
  • 68
  • 98
1
vote
1 answer

.htaccess rewrite for date i.e. /2012/12/31

I am trying to create some rewrite rules to organize content by date via URL in a short, readable…
1
vote
1 answer

Submiting multiple values from a dropdown menu in PHP

I hope someone is going to be able to help me on this one! I'm developing a web application in php and I want to submit an activity from one of my co-workers. Sometimes the activity is done by more than one co-worker so I'd like to be able to submit…
Marko Ćilimković
  • 734
  • 1
  • 8
  • 22
0
votes
1 answer

Excel Search query cell for multiple values and return those search values from a different table, and return column headers

I'm helping a friend's son with an excel exercise and it has me stumped. I'm not even sure if excel can handle something like this. We have a column that has multiple cities, and multiple cities within a couple of cells, and we need to find out what…
0
votes
0 answers

Hamming distance on categorical data with multiple values in one cell

I'm calculating pairwise hamming distance between rows in data frame which contains strings. Some of the cells contain two values. I would like to calculate hamming distance as follows: if row1 = "d,e" and row2 = "d", Hd(row1, row2) is Hd("d", "d")…
0
votes
0 answers

import excel multiple values to ms access combo box

I want to import excel table data to ms access table. but an error occurs(violated key rules, the record field data erased) when i import excel multiple values such as ["a","b","c"] to ms access combo box(table/query) and it returns blank i tried…