Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

25
votes
4answers
14k views

Keeping a UIButton selected after a touch

After my user clicks a button, I'd like that button to stay pushed during the time that I perform a network operation. When the network operation is complete, I want the button to return to its ...
17
votes
3answers
3k views

UIButton: set image for selected-highlighted state

I set an images for button's states Normal,Highlighted and Selected, but when the button in selected state and I press/highlight it I didn't see my highlighted image but just grayed picture. Is it ...
6
votes
4answers
1k views

jQuery: Check if jQuery object contains exact DOM element

I have a reference to a DOM element, and a jQuery object which is the result of a selector, and I want to check if that specific DOM element is in that jQuery object. Short of looping through the ...
5
votes
3answers
4k views

how to get selected text from iframe with javascript?

<html> <body> <script type="text/javascript"> function smth() { if (document.getSelection) { var str = document.getSelection(); if (window.RegExp) { var ...
4
votes
1answer
5k views

WPF ListBox Image Selected the saga continues

Ok in my ListBox scrolling images w/ text, etc. the saga continues. When I click one of the items, to select it, that runs a process to open a web browser and go to a specific URL. The problem I'm ...
3
votes
1answer
74 views

Copy Selected Area's text to clipboard

I am pretty new to C# and programming in general. I am wondering if there is a way to implement the following feature: in my C# program have a textbox (named tb1) and button (named bt1). When I ...
3
votes
2answers
477 views

WPF Datagrid IsSelected Binding and scrolling

I uses MVVM and I bind datagrid to collection with some code: <DataGrid ItemsSource="{Binding Entites}" AutoGenerateColumns="False" IsSynchronizedWithCurrentItem="True" ...
3
votes
1answer
692 views

how to change Qt qListView Icon selection highlight

When using qlistview in icon mode I need to completely remove the hilighting when a icon is selected. Using the code below the text under the icon is no longer highlighted but I still get blue color ...
3
votes
1answer
959 views

Select row after refreshing DBGrid

Well, some kind of n00b question from me. I've surfed the net and similar questions here but haven't found any right answers for such simple (as I thought) problem. I have a DBGrid. I select one row ...
3
votes
2answers
169 views

can any text on a webpage in a <p> tag or <span> tag be selected programmatically?

can any text on a webpage in a tag or tag be selected programmatically? the input element and textarea element can do that easily, but how about text in other cases?
3
votes
2answers
3k views

wxPython wxListCtrl selected row color

I want to have certain rows selected color be red instead of the standard color (blue on windows) so that I can indicate status. Anyone know if this is possible in wxPython?
3
votes
2answers
4k views

How can I speed up jquery :selected selector?

I have a dropdown in a web page with 3830 elements in it. I know, excessive but whatever. In jquery I get the selected option value using the statement: $( "#institutionCombo :selected" ).val(); ...
2
votes
1answer
42 views

Monotouch Dialog implementation in a Class derived from UIViewController

I just want to override the Selected method from MonoTouch.Dialog. Simple as that I can not figure out the correct way.. I have a class FirstView which derives from UIViewController. In it I declare ...
2
votes
2answers
85 views

Programmatically select a row in JTable

When the application is started, none of the rows is selected. But I would like to show that the first row is already selected. How to do this? Do I need to set the color of a row in JTable? ...
2
votes
1answer
90 views

jQuery check if option val and selected, do math and alert

I need to do some calculations based off shipping options. For this example I simply just want to alert() the new price. I want to add 6% to the selected charge and alert() it. I cannot really ...
2
votes
4answers
47 views

if day = day select - jQuery

$('<option></option>') .attr('label', day) .attr('value', day) if(myDate.getDate() == day) { .attr('selected','selected') ...
2
votes
1answer
676 views

How to get selected rows of a grid panel in ExtJs?

I want to get the surname fields of the selected rows. This one does not work at all: users.getSelectionModel().getSelections();
2
votes
1answer
409 views

ListBox items not selecting (ASP/VB.NET)

I have a simple ASPX page with a listbox and a button. Listbox has about 8-10 items in it. After the user selects an item (listbox is multi-select) and clicks the button, I'm iterating through the ...
2
votes
2answers
412 views

Get the indexes of selected rows in GridView

I want get the rows I selected from gridview use a checkbox. The checkbox is like this! <asp:TemplateField ShowHeader="False"> <ItemTemplate> ...
2
votes
2answers
219 views

How to know which div I clicked to change it's content?

I'm achieving a "delete comments system", a "delete div" near to each comment, but I'm stuck on how to know in which I clicked on "Delete" button after a jquery post function runs? and then how to ...
2
votes
2answers
766 views

javascript keep a selected value from a list after form submit

i have a little form with a select list, and i am submitting the form every time i select an item. the problem is that, after selecting a value and submitting the form, the selected item doesn't ...
2
votes
2answers
354 views

How to find an option tag with a specific value using jQuery

I'm trying to set an option with a specific value as selected (using jQuery). I've got a string: var data = '<select><option value="1">A</option><option ...
2
votes
1answer
973 views

contenteditable selected text save and restore

I came across this post that shows 2 functions on how to save and restore selected text from a contenteditable div. I have the below div set as contenteditable and the 2 function from the other post. ...
2
votes
2answers
3k views

How do I style selected item in Android ListView?

I am an Android newbie trying to learn the UI side of things and it's doing my head in. Here's what I have right now: breeds_listing.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout ...
2
votes
3answers
2k views

change color of selected menu tab

so i have grabbed a snippet from another question <script type='text/javascript' > $(document).ready(function () { $("div.content ul li a") .mouseover(function () { var t = $(this); if ...
2
votes
3answers
369 views

jquery hide objects if object class doesn't contain a value

The title might be a bit confusing, basically I'm trying to write up a script which will grab the selected values from a drop down form, and hide li's if its class does not contain the values from the ...
2
votes
2answers
279 views

How to remove the selected element during a clone() operation

I have a select box that gets cloned. I want to remove the user's previous selection from each cloned select box. Here is the method that does the clone() : function addselect(s){ ...
2
votes
3answers
7k views

Set item.selected in ASP.NET Menu Control

ASP.NET newbie here. When on a page I'd like to set the corresponding menu item to selected. My approach is this: On Home.aspx.cs: Menu menu = (Menu)Master.FindControl("Menu1"); if ...
2
votes
3answers
2k views

jQuery remove selected option from this

first post here, I come in peace :) I've searched but can't quite find what I'm after. I am trying to manipulate the selected option of a select box. Can someone please explain why this works: ...
2
votes
2answers
3k views

Getting selected text win CKEditor Plugin

I have made a plugin for CKEditor, but it relies on the currently selected text. In FF and Chrome I can use: var selectedText = editor.getSelection().getNative(); but this doesnt work in IE and ...
2
votes
2answers
2k views

.NET MVC MultiSelectList and selected values

I am trying to set the selected values for a MultiSelectList but the page does not display any values as selected. I have tried every practical way to do this and still get the same results. I am ...
2
votes
2answers
746 views

For each line in selected lines (vb.net)

how can I get the lines which are have selected text in them? For example: The selected lines would be 1, 2,3 and 4 (0 being the first line) How can I get to code like: For Each line as string(or ...
2
votes
3answers
1k views

Overriding default jQuery UI tab from link on other page

I am using jQuery UI tabs (v1.7x) on the home page of a site I'm working on at the moment, and they are set up as follows: jQuery(document).ready(function($) { $("#mastheadhome").tabs({ selected:4, ...
2
votes
2answers
7k views

wpf set ComboBox selected item highlight color

I need to change the highlight color of a ComboBox's selected item in the popup list. I've found several tutorials explaining how to do this, but all of them either use Blend, which I do not have and ...
2
votes
5answers
5k views

iPhone app: SDK 3.0 : Button Selected State: Can't get working!

Trying to do simple button functionality. Button A. It has 3 states: default, highlighted, selected. Should UNSELECT when clicked again. For the life of me, I can't even get a simple 3 state ...
2
votes
3answers
3k views

jQuery highlighting selected columns only in a table

I see this post on highlighting even columns but can I highlight only selected columns? Here is the code they use: $("table.Table22 > tbody > tr > ...
2
votes
7answers
877 views

What values can appear in the “selected” attribute of the “option” tag?

I have some markup similar to the following: <select> <option selected="selected">Apple</option> <option selected="">Orange</option> </select> In this case, ...
1
vote
2answers
64 views

retaining selected dropdown option on postback

How do I retain whatever was selected from the dropdown even after page refresh so user knows what he/she selected using jquery? or javascript? <select id="hospitalDropDown" ...
1
vote
2answers
147 views

Google Maps Api 3 Remove Selected Marker Only

I've 2 function as below: function addMarker() { marker = new google.maps.Marker({ position: Gpoint, map: map, draggable: true, animation: ...
1
vote
2answers
81 views

How do I make the DataGridView show the selected row (Winforms)?

I need to force the DataGridView to show the selected row. In short, I have a text box that changes the DGV selection based on what is typed into the box. When this happens, the selection changes to ...
1
vote
2answers
63 views

Detecting Which item was Selected From a ListView

I am trying to get the title of the song that was selected from my listview but im getting a force close any ideas. ArrayList<String>songtitle = new ArrayList<String>(); //This ...
1
vote
2answers
170 views

asp.net using c# DropDownList item not selected

ASP.NET using C#: I've got a DropdownList and a Button. In Page_Load I fill the DropdownList manually via SQL-Query with some items from the database. After click on the button I want to Alert the ...
1
vote
1answer
59 views

AdvancedDataGrid - Start to edit the selected row when a button is clicked

I want to allow users edit Flex AdvancedDataGrid selected row by button click instead by click on AdvancedDataGrid itself. So i decide to dispatch itemEditBegin event of AdvancedDataGrid when user ...
1
vote
3answers
70 views

Jquery validate require if checkbox option is X

I am working on a form that requires validation. A small part of the form requires the user to choose between 2 options "Yes" , "No". When no is selected I would need them to enter a reason, and ...
1
vote
3answers
41 views

how do I write a jQuery/javascript if statement so that it's triggered when a html <option> with a specific class is selected?

<select> <option value='34'>Trees</option> <option value='13' class='create_sub_category'>Add new sub-category</option> <option value='24' ...
1
vote
1answer
64 views

android: how to disable selected and pressed attributes of parent view in listView

I have a listView with custom rows containing buttons and I populate the listView with a custom cursorAdapter. I have set a selector for the button to change the background of it when pressed and it ...
1
vote
1answer
44 views

SQL: order by how many rows there are (using COUNT?)

For SMF, I'm making a roster for the members of my clan (please don't come with "You should ask SMF", because that is completely irrelevant; this is just contextual information). I need it to select ...
1
vote
1answer
76 views

Button Handle MouseLeftButtonDown but still want the event to bubble

I have a listbox with a DataTemplate for the items. Inside my template, I have a label and 3 buttons. My problem is that when i click the buttons, the listboxitem never become selected since the ...
1
vote
2answers
182 views

How to know which lines were selected from a DataTable

I have a page with a "rich:DataTable". For each table row, added a checkbox to allow the user to select more than one line before excute an operation. How to retrieve the rows that were selected?
1
vote
3answers
109 views

JInternalFrame selection

I have a JDesktopPane containing some JInternalFrames. I want some menus on the menubar to be activated only when one of the JInternalFrames is selected. I've tried using VetoableChangeListener, with ...

1 2 3 4