title

Databinding Textbox to Form.Text (title)

I'm trying to bind a Textbox.Text to Form.Text (which sets the title of the form). The binding itself works. But, the title isn't updated until I move the entire form. How can I achieve Form.Text being updated without moving the form? I'd like Form.Text being updated directly when I type something in the Textbox. Edit; I set the title ...

How do I get the title of a youtube video if I have the Video Id?

I'm playing now with the Youtube API and I began a small project (for fun). The problem Is that I cant find the way to get Title of a video from the Id. (example: ylLzyHk54Z0) I have looked in the DATA and PLAYER api documentation and I cannot find it. If someone knows how to do this or if someone could help me find the way to do this...

How to show a * (asterisk) in Application Title when document has changed and is not saved

I have a MDI Application with one MDI child. When a user changes a Textbox on the MDI child, the MDI child (= document) is changed and is not saved. I want this to be visible in the Titlebar of the Application, like this: ApplicationName [DocumentName*] When the users saves the Document and doesn't change anything after, it should di...

jquery - Can you manipulate page titles?

I thought I heard somewhere that you couldn't use jquery to manipulate the content... Is that correct? Basically, I have a site that has parameters like p.php?d=keyword+keyword+keyword, and I wanted to be able to set the title according to what's in that d parameter... Is there a way to do that? ...

Why does the <link> ‘title’ attribute cause browsers to ignore my styles?

The following html document (together with the CSS) fails to render the styles in b.css. <!doctype html> <html> <head> <link rel="stylesheet" media="screen" type="text/css" title="A" href="a.css" /> <link rel="stylesheet" media="screen" type="text/css" title="B" href="b.css" /> </head> <body> <div id="A">A</di...

How can I add an icon to the title bar of a BlackBerry app?

I'm writing a BlackBerry app in Java using the BlackBerry Java API (OS 4.7 and above). I would like to add an icon to the title row of my app. The API documentation says that the method "setTitle" of the "MainScreen" class takes a "Field", so I thought I could just create a "HorizontalFieldManager" that contains an icon (BitmapField) and...

master page generating a second title tag

I have a simple page inside a master page (well, in a master in a master). In the top master I have the head tag with runat="server", with a number of bits such as scripts, stylesheets, etc. and also a contentplaceholder. There is no title tag here. In the page that uses this master, the content for the placeholder contains the <title...

Invalid behaviour when using setPartName to change the View name displayed in an Eclipse-RCP applicaiton?

I am developing an RCP application based on Eclipse and use i18n to load message resources. My requirement is that I need to change the View title based on locale/i18n. I am using setPartName to do that. It does change it, but the issue is that it shows the title-changes only after the view has been clicked. So, in a way, it first disp...

Application Architect vs. Systems Architect vs. Enterprise Architect?

So many buzzwords. Not sure if I need to start playing BS Bingo or not. And I'm not trying to be cynical. But I've heard many people with these various titles. There never seems to be a clear delineation between the three. Or there's a lot of domain crossover between the three. Actually, another I've seen while looking around here on Sta...

Custom model attribute (column name) title in Ruby on Rails

Can I add custom model attribute titles, so forms could automatically render them instead of "prettied" column name? For example I apply some method in my model, which defines attribute title: imaginary_method_which_defines_attribute_title :description, "Aprašymas" So I do not need to write title in every form label helper: <%= f.la...

HTML A tag title formatting

I was wondering if it is possible to display the title from an A tag reference, which comes up as a pop-up in your browser, if anyone know of any libraries to make this pop-up much nicer and have the ability to format the content? ...

Giving color to the title in tableView in iphone

I am new to iphone development.I want to change the color of the title to brown.In default it is in gray color.To display the title i am using the following method. - (NSString *)tableViewUITableView *)tableView titleForHeaderInSectionNSInteger)section { return @"Title"; } I want to change the title backgound color. please help me ...

Duplicate title tags using ASP.NET MasterPage

I need to set the title of a page dynamically, and so I use code similar to the following: <%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="~/about.aspx.cs" Inherits="Default" %> <%@ Register Assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="ajaxToolkit" %> <%@ MasterType...

Title Attribute on Disabled Elements in Firefox

I am building a very dynamic web-based application using a lot of Javascript to handle user events. I am in the process of making things a little more usable and came across a problem that I've never had before. I am using jQuery, so factor that in to your answers. Thanks in advance. I have a set of button elements defined as: <input...

Iphone navigation bar change title?

How do I change the title text on an Iphone navigation bar? ...

jquery run serverside script when mouseover

Hi I have a site where I need to check all href-links if they are in a custom dictionary on the site. If they exist then the title attribute in the a-tag should be set to the text that is fetched from the server. I put this together based on other wuestions from this site (example, not tested): // How to only activate "a href" links? ...

JQuery Selectors: Select element with specific class and 'title' attribute

Hi all, This should be an easy one, but I can't find a good example anywhere. I'm trying to select a particular element on my page that has a class of 'statuslight' and a title attribute of one of three options. The option (it will depend) is stored in a variable called 'currentStatus'. I've seen some examples, and I'm guessing this is ...

How to display the title in detail view corresponding to the row selected in the table

I am new to iphone development. I am displaying an array of data in a table. Upon clicking the row, it navigates to the corresponding detail view. I want to display a title in the detail view corresponding to the row selected in the table. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { ...

Wordpress: How to Put a Function inside PHP?

Hello, with <?php if (is_category()) echo single_cat_title(); ?> i can show up the current category title.. how can i insert the tag single_cat_title() into: <?php $recent = new WP_Query("cat=10&showposts=4"); while($recent->have_posts()) : $recent->the_post(); if (in_category(10) && in_category(**Insert Here*...

jQuery ui dialog change title after load-callback

Hello, I like to change the title from an UI Dialog after i have submitted a form in this UI Dialog. So in the callback-function after load i should suggest, but i've tried and googled without result. Has anyone an idea? Thanks! ...