list

Value in db is a hyperlink, and wish to list based on the value of the hyperlink

Hi, I have made my parameter as a hyperlink. Now i want to click the hyperlink and then list of all information of that value in hyperlink. How do i do that? From Account No | To Acc No | Amount | Date So, from account no is value exist from db, and a hyperlink. so i wanna click from accno e.g (123456), and then it will list all tran...

Ordered lists inside an Android TextView

I want to display an ordered list inside a TextView, for example: 1) item 1 2) item 2 Using the following layout: <TextView android:text="<ol><li>item 1\n</li><li>item 2\n</li></ol> /> I get: item 1 item 2 How can I change the bullets to numbers? Thanks. ...

Grails g:select setting selectedIndex

How do you set the selectedIndex on a <g:select> tag with a value from the list? I have a page that allows you to add a record. the page then goes to a view containing a g:select and i want the g:select to default to that item i just inserted into the database. I tried passing the new object in the flash but i can't figure out how to ge...

efficiently knowing if intersection of two list is empty or not, in python

Hi! Suppose I have two lists, L and M. Now I want to know if they share an element. Which would be the fastest way of asking (in python) if they share an element? I don't care which elements they share, or how many, just if they share or not. For example, in this case L = [1,2,3,4,5,6] M = [8,9,10] I should get False, and here: L...

Function list of php file

How to get list of functions that are declared in a php file ...

SharePoint: Filter view in a list on calculated type column

Hey, Test Case1 I have a SharePoint List which contains a Number Type Column says as 'Col1'. Number of decimal places is set as 'Automatic'. There are three items in SharePoint List having 'Col1' values as 20, 30, 50. I have created one more column of Calculated Type says as 'Col2'. Formula : Col1 Data type returned from the formu...

Populating a list dynamically (jQuery)

<ul> <li>item x</li> <li>item y</li> <li>item z</li> </ul> <a href="#">Populate</a> I want to duplicate (copy and append) all <li>s when clicked on the 'populate' link. How do I do it? Thanks ...

Quick Java LinkedList problem

Basically I'm rather new to Java and I have a problem with understanding a line and getting it to work. Heres the line of code: LinkedList<ClientWorkers> clients = SingletonClients.getClients(); Heres the procedure its in: ClientWorker(Socket client, JTextArea textArea) { this.client = client; this.textArea = textAre...

extra data required to render a list

how do people deal with extra data needed to render a list. eg I have a IList<User> Users that is a property on my viewmodel. However for each row in the user table, extra information needs to be displayed. should i create a display model for User with the other properties included on it? any ideas would be greatly appreciated? ...

List parameters in recursive calls (C)

I'm designing a recursive algorithm : int f(int[] a, int[] b){ ----changing a here ----changing b here f(a,b) ----writing a here ----writing b here } I know all arrays are pointers so this code should be problematic. It'll write the final values of a and b after all the recursive calls finished. I dont want that to happen. What shoul...

How do I strip spaces out of data in a SharePoint column?

I have a MOSS 2007 list with a column which contains hundreds of business and city names. These names are text commonly with multiple words, such as "City of Austin". I have setup filtering and data view web parts to allow a page to display contents of the list based on a query string. All works well, except that I need to generate th...

How does Java List size() work?

Hi, In java, there is a List interface and size() method to compute the size of the List. when i call List.size(), how does it count? is it counted linearly? or the count is determined and just the value is returned back when size()? ...

Is there a way to turn XML into dictionary and lists?

<things> <fruit>apple</fruit> <hardware>mouse</hardware> ... </things> Turn it into: {'things':[{'fruit':'apple'}, {'hardware':'mouse'}]} Is there an easy way to do this? Thanks. ...

How do I do this with Python list? (itemgetter?)

[{'id':44}, {'name':'alexa'},{'color':'blue'}] I want to select whatever in the list that is "id". Basically, I want to print 44, since that's "id" in the list. ...

Cakephp ctp create form input - php

i am creating a calender prog, using cakephp when calling a method disp with month and year as params, it should disp the calender.. this my index.ctp//$month int 1 to 12 //$mon[12]=='December' <?php echo $form->create('Calendar', array('action' => 'disp', 'class' => 'normal')); ?> <?php echo $form->input('month', array('options' =...

What CSS will prevent overlap of these nested list items?

Please view the following HTML/CSS as a webpage. It displays an outline with borders around the various elements. The containing list intentionally allows for horizontal scrolling within a fixed width. The trouble is that when you scroll to the far right of the outline, you can see that the borders (all hot colors) of the inner elemen...

Map List of Tuples into a Dictionary, python

I've got a list of tuples extracted from a table in a DB which looks like (key , foreignkey , value). There is a many to one relationship between the key and foreignkeys and I'd like to convert it into a dict indexed by the foreignkey containing the sum of all values with that foreignkey, i.e. { foreignkey , sumof( value ) }. I wrote s...

jQuery pick next div in a list to show

Hey, I have some jQuery going here: $('#ticker1').hide(); $('#ticker2').hide(); $('#ticker3').hide(); $("#ticker").oneTime(2000,function(i) { /* Do the first pull out once */ var randomNum = Math.floor(Math.random()*3); /* Pick random div to show */ $('div#ticker div:eq(' + randomNum + ')').show(); $("#ticker").animate({...

Better to wrap forms in divs or list items

Is it best to wrap forms inputs in divs: <div id="formContainer"> <div> <label for="username">Username</label><input type="text" id="username"> </div> <div> <label for="password">Password</label><input type="text" id="password"> </div> </div> Or is it better to wrap in ul or ol list with list-style-type set t...

Functional Programming better to manipulate lists of database data?

Hi, I'm watching some lecture's on Functional Programming and the main 'data structure' so to say, but there really isn't one in FP, is lists, so my question is: when one deals a lot with database's and 'lists' of data, then is Functional Programming not superior to OOP? ...