column

HTML table with horizontal scrolling (first column fixed)

I have been trying to think of a way to make a table with a fixed first column (and the rest of the table with a horizontal overflow) I saw a post which had a similar question. but the fixed column bit did not seem to be resolved. Help? ...

Problem in updating page wise total in JSF datatable when using RichFaces datascroller

I am creating a datatable in my JSF page which shows the footer for every column with the total of values in the column page wise. I am using Richfaces datascroller for paging. When I click next page in richfaces datascroller I need to update my footer with the total of column values in that page, which now a problem for me I managed ...

NSTableView: Avoid Blue Header when Sorting Table Column

Hey experts, when I click on the header of an NSTableView column, the header gets blue and the little grey arrow shows up. How do I avoid the blue selection and the arrow (but keeping the sorting itself)? As an example for what I want: In Xcode click on the 'Groups & Files' header. Thank your for any help! ...

How do I control column width of the Vaadin Table?

I have a large table to display in one of our Vaadin application. The table has 110 columns with large text header for each column. On display the table looks awful as all the column header goes off the screen and the header separator loses the alignment with the data record column separator. I have set the table width to 100% to displ...

loweredrolename in aspnet_users table (SQL Server 2005)

For my existing data, both RoleName and LoweredRoleName are same, but some are lower case and some are in same case too. Anyone knows what is the use of column LoweredRoleName in aspnet_users table? ...

How to put column name in sqlsever CAST data type??

Hi, Today, I have started writing a query which is as given below: SELECT IP1.InstId,CAST(IP2.Quote AS DECIMAL(10,2)) AS 'CurrentPrice',IP1.Quote,(IP2.Quote-IP1.Quote) AS 'Change' FROM InstrumentPrices IP1 INNER JOIN InstrumentPrices IP2 ON IP1.InstId=IP2.InstId INNER JOIN Instruments I ON I.Id=IP2.InstId INNER JOIN Games G ON G.Id=I...

adding columns to dataviewgrid dynamically.....

Hi All, I am trying to bind columns to dataviewgrid dynamically. But it shows compiling time error with red wavy line. I have set autogeneratecolumn=false; and have written following: gvData.datasource = dsGetMasterdata.table[0]; BoundColumn bc = new BoundColumn(); bc.DataField = dsGetMasterData.Tables[0].Columns[i][0].ToString(); ...

How to create Stacked ColumnCharts with different colors in Flex

Hi, I am trying to create a stacked column chart that will show three different values on a column with different colors. Please let me know how to achieve that. Thanks, AM ...

jQuery: problem under IE8: setting table's column width

Hi, Following problem: I'm having a table with 3 columns and I'm using jQuery to set the column widths by code, like: var tr = $("tr",myTable).eq(0); var cells = $("td",tr); cells.eq(0).width(100); cells.eq(1).width(150); cells.eq(2).width(300); Works nice under Firefox, but IE8 acts very strange: The 2nd column shows up on screen w...

How to get the id of the added row in Oracle

Hello, I need to translate a script from tsql to plsql, something like: DECLARE @temp_id int INSERT INTO Table (col1, col2) VALUES (1, 2) SET @temp_id = @@identity but, I am having trouble to find something similar to global variable @@identity Oracle expert anyone? ...

Equal height columns with padding

Hey. I have the following markup: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml"&gt; <head> <title></title> <style type="text/css"> * { padding: 0; margin: 0; } #container { padding-left: 200px; ...

Identify column-level dependencies between databases

Is there a way to identify column-level dependencies within and between databases? I'd like to generate a report of all columns in a database that are unused by anything (views, procs, UDFs). e.g. In database 'DB1', there is a table with a column called 'col1'. How do I determine if 'col1' is being used by procs, views or UDFs in eit...

getting null value for particular column, while loading the object.

I have an entity bean which is made using Hibernate annotation. @Entity @org.hibernate.annotations.Entity(dynamicInsert=true,dynamicUpdate=true) @Table(name="[tbDDE]") public class DElement implements Serializable{ @Column(name = "[ID]", nullable = false, unique=true, updatable=false, insertable=false) @GeneratedValue(strateg...

[R] How to plot ratios based on characteristic in another column

I'm new to R and ggplot2 - any advice appreciated! For each year I am trying to plot the ratios of incomes between different skill groups in ggplot. I.e. I want to have the ratio of incomes Level_4/Level_3, Level_4/Level_2 and Level_4/Level_1 in the same plot. Data frame column headings are Skills (Levels 1 to 4), Year and MeanIncome ...

How do I create an empty table with SQL?

This isn't much of an issue with MySQL per-se. The Full Story I'm writing a very small PHP framework. It isn't like existing frameworks where they force you to use a certain methodology. It isn't either like a CMS framework. Trust me, I've seen Zend framework and I've used CMSes like Joomla and WordPress extensively, none of them come ...

search by column (not field) number with awk

Is there a way to filter lines with awk using the column (not field) number? I want to grab all the lines in a text file containing the value of field 6 which is assigned to a variable. I am using: awk -v temp=${het} '{if $6 == temp} print $0}' But I have noticed that very occasionally field 5 is blank which messes things up. Wh...

New site column not displaying in SPF2010

Hi, After much trials-and-errors, I've managed to find how to add new columns in Site Pages of our Sharepoint Foundation 2010. I'll explain using a field called "Category" I created. The problem I have now is that the only way to add or edit my page categories is to first create a new page, enter its title when asked by the pop-up, ent...

Hide column in telerik Grid but need to get it

let's say i have an order and order details. the view will contains the order fields, and a Telerik Grid for the details i always maintain a reference of the Order in the session. Session["Order"] = order; and when the user add an order detail to the grid, I'm saving it in the Order reference. public ActionResult Grid_AddDetail(Ord...

Split page scrolling behaviour in HTML

So I have a page that is split into 2 columns. The left column there are expandable forms that are quite long to ask the user optional product preferences. On the right side of the page there is a much shorter, 'contact details' form. The contact details form is mandatory while all the left product preferences forms are optional. The b...

how to set a DataGridViewColumn cells to unselectable?

hi. in C# 4.0 (Visual Studio 2010), i have a Windows Form DataGridView that must be multiselect, and it has a specified Column that i don't want its cells to be selectable. what should i do? ...