Most voted "multiple" questions
19 questions
Sort by count of
-
4
votes1
answer1018
viewsHow to remove an already selected item from an upload Multiple
I have this example and would like to remove an item from my selection. However it is not removing properly, has a problem with the index number, how could it solve this?…
-
3
votes1
answer354
viewsjQuery, stop performing functions depending on window size, also in resize
I’m working on a website that calls external JS files. The problem is that when you would like some functions to stop running on desktop when $(window).width() < 800 and vice versa: Link to…
-
2
votes1
answer369
viewsCSS several backgrounds
I have this code, and I don’t understand why it doesn’t work, what I wanted was to have two backgrounds one in the top center another bottom center. but it only works at the bottom and it’s not…
-
2
votes2
answers697
viewsAttribute "Multiple" of <select> tag does not work
Attribute multiple tag <select> does not work, it is only possible to select a single option. I am using Chrome. <h4>From</h4> <div> <select name="sites-list" size="7"…
-
2
votes1
answer1186
viewsMultiple select list with items already selected using Razor
I’m using Razor to generate a SelectList thus: @Html.DropDownList("StatusImovel", new SelectList(ViewBag.ListaStatus, "IdStatus", "Descricao"), new { @hidden = "hidden", @multiple = "multiple",…
-
1
votes3
answers115
viewsMultiple callbacks with Javascript
Hey there, guys. I have two callbacks of distinct functions that provide me values that need to be used outside of these functions. Follow the code: FB.api('/me', function(response) {…
-
1
votes0
answers14
viewsMulti-server publishing (VS/Publish)
Is it possible to publish an application through Visual Studio 2015 on multiple servers at once? How could this be done?
-
1
votes1
answer109
viewsSelect Multiple with Material Design Lite
How to make a <select multiple> with the CDM? I looked at the website but found nothing. I saw that the Angularjs has it but not the use in the project…
-
1
votes1
answer37
viewsHow to create a test for a screen that uses the same hook multiple times? React Testing Library
I came across a test scenario in React where I need to hook twice. In this case I am using a hook called useGet() in two situations on the same page. Of all the times I have tried only the last…
-
0
votes0
answers118
viewsJquery - Loop a function
Good evening everyone. I am learning a little Jquery and wanted a help. I have the following code: $(document).ready(function(){ $('#btnEnviar').click(function(){ var caminho = ("/uploads/");…
-
0
votes1
answer486
viewsvalidate image input file jquery Multiple 4 ways
Good evening guys, I have an Multiple input file and I need to do 4 validations before sending the form. 1) Limit the number of images sent to 10 2) images have to be of type jpeg or png ( put only…
-
0
votes0
answers58
viewsHow to disable an item from the list so it won’t be checked, to just show in the combo?
How do I leave an item disabled in this plugin: ui multiselect.? http://embed.plnkr.co/xWvfWYjaW7TThKZONkv5/ Code: angular.module('ui.multiselect', []) //from bootstrap-ui typeahead parser…
-
0
votes1
answer1771
viewsChange authentication table, Laravel 5
I’m making a platform that will have 3 authentication systems, one for ordinary users, one for admins, and one for workers. I thought changing the model and table in config->auth would be enough…
-
0
votes1
answer121
viewsPHP does not recognize all Multiple input files
Good morning, I’m doing a function to upload several images, but in PHP only reaches the last one. Here are my codes: HTML <form id="msform"…
-
0
votes1
answer3485
viewsUpdate Multiple Columns
I have the following situation, I need to update the table SB1300 in the fields B1_DESC and B1_CODBAR for several lines. The Where will be the B1_XCODORI I can do it in the same query?…
-
0
votes1
answer2051
viewsHow to make the Multiple file input field in a second selection keep the previously selected files?
When Open the file selection window it lets me select multiple files, OK!. But after opening the files if user click again to open more files it clears the previous selection... How to make him…
html filing-cabinet input multiple-file-upload multipleasked 5 years, 9 months ago Richard Barcelos 21 -
0
votes1
answer39
viewsDuplicate fields with Yii2 Multipleinput
I have a form that will need duplicity. It is an academic form. In this form, it contains the following attributes, according to my model: class Academico extends \app\models\MainModel { /** *…
-
-1
votes1
answer632
views -
-2
votes1
answer276
viewsWrite multiple csv files in Python
Hello! My question is the following: I wrote a program that, with the information I enter, it will collect a number of links (that number varies) and will store them in a csv. Then he will open each…