multi-select

Multiselect list will not drop down in IE9?

喜你入骨 提交于 2019-12-11 13:14:30
问题 ISSUE : Dropdownlist for multiselect wont't drop down after deployed to remote server. I have it working just fine locally with IE9/Chrome/FF but when I deploy to a remote server it doesn't drop down when clicked (Chrome/FF/IE8 work fine remotely). I get a javascript;; tool-tip in the browser (left corner) but not sure how to troubleshoot as I'm not a javascript/scripting guru? Any advice or has anybody ran into this before with jQuery Multiselect? http://labs.abeautifulsite.net/projects/js

jqGrid add multi select column filter to a specific column

蹲街弑〆低调 提交于 2019-12-11 12:13:39
问题 I am trying to add the multi-select filter to my PROVIDER column in the jqGrid . I am able to add the select filter but now I am converting it to the multi-select filter. I referred to a few old posts here and tried to do the same. It's not throwing me any error but it is not creating the multi-select filter also. Please let me know what I am doing wrong below. I am able to get the unique values and able to create the SELECT list, I am guessing something is wrong with function

jqgrid click local data column sort (client-side only) wipes userData on grid refresh

孤街浪徒 提交于 2019-12-11 11:34:33
问题 I have a grid that is populated by a JSON response (MVC3 controller) that has a userData component for some additional data for grid captions, etc. All that works just fine. I recently switched the the grid's data loading to "loadonce: true" as in working with larger grid results sets, I wanted client-side sorting and filtering. All that works good. BUT, I was surprised that the userData got wiped the first time I clicked any column for sorting. If I turn off loadonce, userData is fine, but

R Frequency table for multiselect survey question across several columns

倾然丶 夕夏残阳落幕 提交于 2019-12-11 07:46:08
问题 I want to do a fairly common analysis of survey questions in R, but am stuck in the middle. Imagine a survey where you are asked to answer which brands do you associate with certain features (e.g. "brands" could be PlayStation, XBox..., and features could be "speed", "graphics"... where each brand can be checked on several features aka mulit-select). E.g. sth. like this here: https://www.harvestyourdata.com/fileadmin/images/question-type-screenshots/Grid-multi-select.jpg You often refer to

JQuery: How to drag multiple rows from one table to another?

自闭症网瘾萝莉.ら 提交于 2019-12-11 07:23:08
问题 Here's the Fiddle I have a table with draggable rows that are multi-selectable, but I want to drag them en masse to another table and drop them there - not to be appended as additional elements to the other table, but to do some stuff with the information, i.e. form submission. My example is originally based on another demo I found here: multi drag demo Here is the HTML code for the basic example of this problem. <table class="DraggableThings"> <tr draggable='true'><td >Row 1</td></tr> <tr

kendo ui multiselect remove delete action

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-11 06:37:05
问题 How can i restrict users from deleting the already saved items in the Multi select widget. Users should not be able to delete existing values but can add or remove the new values. The solution i tried was on databound remove the delete icon like below. It gets deleted but comes back after the call executes the databound method. Any ideas? onDataBound: function (e) { e.preventDefault(); $(e.sender.tagList).find("li span.k-delete").remove(); } This is the code in the view which calls the above

Jquery ui MultiSelect IE 8 issue

心已入冬 提交于 2019-12-11 04:51:10
问题 Using the latest Jquery UI Multiselect it works fine in firefox, chrome but in IE8 the options are blank as shown here I am using the following libraries jquery-1.7.2.min.js jquery-ui-1.8.20.custom.min.js Any ideas, would be much appreciated. 回答1: Solved it, There is an issue with the way you add the options to a list in JQuery in IE 8 I was using $('#foldersBUSelect').append( new Option(folderName,folderID,false,nowSelected) ); when I should be doing the following which IE 8 likes $("

How to set selection in mulitiselect list box in cakephp

孤街醉人 提交于 2019-12-11 04:39:56
问题 I want to set the multi selection to my multi list box. I have two results in my view page. $inr1 = 0; $arr1 = array(); $str_arr = ''; foreach ($result as $rows){ $inr1 = $rows['Employees']['employee_id']; $arr1[$inr1] = $rows['Employees']['first_name'].' '.$rows['Employees']['last_name']; $str_arr = $str_arr.$inr1.','; } $str_arr = substr($str_arr,0,-1); //print_r($arr1); $inr = 0; $arr = array(); foreach ($options as $option){ $inr = $option['Employee']['employee_id']; $arr[$inr] = $option[

Why are the Ext JS multiselect item selector files not included in the Ext JS 3.3 download and where are they?

夙愿已清 提交于 2019-12-11 04:32:12
问题 I am trying to set up a multiselect item selector based on this sencha example code. However, after building it into my environment, I get this error: What could be causing this error and how might I fix it? Addendum I have found that when I comment out this line: //xtype: 'itemselector', then it works. Why would the xtype "itemselector" not work? Strange also that I have found this list of valid ExtJS xtypes and itemselector is not on it. How could the Sencha example work if "itemselector"

free-jqGrid 4.13.4 multiselect toolbar filter not working

為{幸葍}努か 提交于 2019-12-11 04:29:34
问题 I have looked at all of the Q & A about the use of the Multiselect widget in the filter toolbar of jqGrid. I have noticed that in almost all the solutions, the jqGrid versions and the jquery versions are not current ones. I am using the most current versions of both jqGrid (4.13.4) and jquery (3.1.1) and jqueryUI (1.12.1). I have tried the sample code from here in my javascript. It loads fine, but when I try to choose any of the values from the multiselect, the grid clears and remains cleared