custom

WordPress 3.0.1 Query Custom Post Type with Custom Taxonomy

I have a custom post type with multiple taxonomy types. The issue is focused around just one of them. I need to display all custom posts that have a taxonomy from featured-vendors checked. Right now, there is just one "featured" , but there may be more in the future, such as "highlight" or "sponsor" or something alone those lines. But, f...

Custom UITabBarController

Hi All, I want to customize the look and feel of the tab bar of a UITabBarController. I want to change the colors, the way the icon looks when they are selected, and also, most important of all, I want to reduce the size of the custom toolbar. My approaches for this and the hurdles in it are: A) The first solution which came to my min...

How could you with jQuery select the number at the end of the pathline?

I am trying to grab that 15 at the end of the href with jquery.. <a class="ajax" href="/organizations/1/media/galleries/15">Silly Gangs</a> Any ideas? ...

How to override BOLD on the toolbar in ckEditor

When ever i click on B in ckEditor, i want to pop a msgbox like alert('Good Morning') . How to do this? ...

Custom formatting mvc grid

Who could tell me why this formatting doesn't work in case of Ajax Binding? .RowAction(row => { if (row.DataItem.Probability == 100) row.HtmlAttributes["style"] = "color:green;"; }) ...

How to use Custom JS with Django inline

I have Django application with inline in place: class Account(models.Model): ContractNum = models.PositiveIntegerField(unique=True, blank=True, null=True) LastName = models.CharField(max_length=50,) FirstName = models.CharField(max_length=50, ) class Subscription(models.Model): Account = models.ForeignKey(Account, relat...

How to set up a real custom Listview ?

Hello everyone, In my app, I should set up a "real" custom listview. For example : First line(Some Text) Checkbox Second line(Some Text) Spinner What I mean is that each line has different widget. In the example, for the first line, we have a checkbox, for the second, it is a Spinner. Does someone ha...

Use Django admin modules inside own forms

In the Django admin i have a customized changelist with added search and filters. I have been looking alot but cannot seem to find a way to use the whole "changelist module" outside of admin. So i can embed it in one of my own pages. I do not need any of the authentication or anything like that. I just want to show a table (for a conten...

hook application procedure and change target file name

Hi I have an application written in visual c++ or visual basic (not sure, sorry) that I do not have source code access to. One of the toolbar options it offers generates an HTML report from a template that has bookmarks or space-holders that are filled by variables calculated in the program before it renders the HTML report. I would like...

how to create a custom remove row button in jqGrid?

I have a button says remove selected button. On selecting a particular row or multiple rows I want delete it from the jqGrid..How can I achieve this ? can I use delGridRow method. Any help will be appreciated. Thanks! ...

How to create or modify the google maps controls?s

I wonder how sites like trulia.com and fotocasa.com customized the google maps ui for their website ex1: http://www.trulia.com/for_sale/Pinecrest,FL/x_map/#for_sale/Pinecrest,FL/x_map/2_p/ ...

Custom CSS for <audio> tag?

I'm building a music player web application which implements the HTML5 audio tag, however would like it to look consistent across browsers - is it possible to define my own custom CSS? And how? cheers Fela ...

CKEditor:Custom Tag Wrapper Buttom

Hey, I want to create a custom button in CKEditor. The button should work exactly like "bold" and "italic" buttons. I want to wrap the html with an h2 tag. I know I can use the styles dropdown but I would like to have a special button for it. The button should get a "clicked" icon when the cursor is on a text wrapped in h2 and by clickin...

Netbeans custom component properties

This might be a stupid question but is it possible for NetBeans IDE to add custom properties to my custom component which I already have placed in the Palette and if so then how? I have been looking all over the internet and haven't found anything that would help me figure it out. Thanks, Martin S. ...

Android Remove Custom Listview Blur Effect

I have a custom listview which is populated correctly. Each view contains a thumbnail. When I hold the listview for scroll i can see the pictures blurring and probably their size changing a little bit. When I release the listview it is back to normal. How can I remove this effect? It is breaking the layout of each views while scrolling. ...

creating a custom image based layout on android

Is it possible to create a layout based on (background) images? For example, there is well know app called Appie that uses this picture as a homescreen: I might be able to recreate the layout with a TableLayout, but this will be difficult to get it perfectly aligned with the buttons in the image. The default layout options make it ver...

Android not sizing Custom Dialog big enough

I am using a custom Dialog that contains a text field, an image, and a button. The text can contain HTML. Sometimes the bottom of the dialog gets chopped off the bottom when the text is long enough. How can I prevent this? I want Android to determine the size of the dialog but it doesn't seem to be doing that. DO I need to size the Dialo...

Google Maps - custom icons not appearing

I have written some javascript to call information from and place a marker with a custom icon for each entry in the data file 'latlngtrunc.js'. latlngtrunc.js contains 'product', 'result', 'level' & 'posn' for each entry. There are 3 different 'levels' each of which I would like to represent as a different colored icon. The code below ...

detecting programatically whether an app is installed on iphone

I am in this situation where I have to display a button which says "Open myApp" (if myApp is installed on the device) or it says "Download myApp" (if myApp is not installed on the device) in an iphone app. To do this, I need to detect whether an app (with a known custom URL) has been installed on the device. How can I do this? Thanks in ...

C++: Custom data type - typecasting and union issues

What I'm trying to do is create a new custom data type that behaves like all other primitive types. Specifically, this data type appears like a Fixed Point fraction. I've created a class to represent this data type, called "class FixedPoint", and in it there are ways to typecast from "FixedPoint" to "int" or "double" or "unsigned int", ...