selected

selected single row no function

hey all.. i have a data table..but it can't select one row after click the row.. can you tell me where the mistake?? oTable = $("#datalist").dataTable({ "bRetrieve" : true, "bServerSide": true, "bProcessing": true, ...

How can i maintain the selected state in button in iPhone

Hi friends, I have created scroll view and sets the buttons are in the scroll view. The Buttons are scrolling horizontally and it works fine. If i clicked the button, i set background image as "Selected State" in button. My problem is how can i changed the selected state in different button, when clicking it and how can i deselected the...

Android: changing the pressed/focused ressource by code

Hello all, I am using some tweaks that allow the user to change the UI of my application with ressources from their SDCard. That's really easy and nothing special, I just use the "setImageDrawable" or "setImageBitmap". http://developer.android.com/reference/android/widget/ImageButton.html That's really cool and all my users are happy ...

jQuery equivalent of radio button "checked" for drop down menu

Hey guys, Probably a simple one, but I need some help. I had some radio buttons and was using the following jQuery to see which was checked: var desc1 = ($('input[name=area]:checked').val()); That worked fine, but I now need to use a drop down menu instead of the radio buttons. I tried the same jQuery and also with "selected" instead...

Searching for Chrome Extensions opening every links in a selected window/tab

hi everybody, I'm a beginner in computer, and I'm looking for Google Chrome Extension which would make easier my surfing work. I'm working on a dual screen display and i'd like to know if there is an extension which would allow me to clic on links on my main screen and would open them straight in a new window/tab on the second screen, ...

Selected state of UIButton in UITableView

Hello, I have UIButton in each cell of UITableView. When I touch it, its state is set to selected. But when I scroll table view so the button isn't visible, the state is set to normal. How can I do it that UIButton remain selected? Thank you. Edit: Here is the cellForRowAtIndexPath code: - (UITableViewCell *)tableView:(UITableView *)...

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

Hi all, 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 drop down form.. if that makes sense?? Each li has multiple classes.. Here's what I've got so far (sorry if it's crude): FORM:...

Accessing radgrid row through object data source

Hello all. I have a radgrid and within said radgrid, I have a templatecolumn that is a lovely drop down list: <telerik:GridTemplateColumn HeaderText="Feedback" UniqueName="Feedback"> <ItemTemplate> <asp:DropDownList ID="ddlFeedback" runat="server" AppendDataBoundItems="True" A...

IsSelected property of ViewModel bound to ListBox, Only FIRST item selection works ?

Hello, I have a MeetingViewModelList bound to a DataGrid. Each MeetingViewModel has a DocumentViewModelList bound to a ListBox within the DataGrid`s DataGridTemplateColumn. The IsSelected property of the DocumentViewModel is bound to the ListBox`s Item property IsSelected. I get no binding errors in the output console. The delete d...

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 (!t.hasClass("clicked")) { // very easy to check if element has a set of styles t.addClass('mouseover'); } }) .mouseout(function () { // a...

ListView selection highlights multiple items in the list when scrolling

I have a custom adapter for a list in my ListActivity in my Android app. I'm dynamically setting the background color of the current item that was clicked because I want to set the marquee of the TextView in the custom list item. This is how I'm doing this: @Override protected void onListItemClick(ListView l, View v, int position, long ...

How do I style selected item in Android ListView?

Hi folks, 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 xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content">...