grid

How to style a real nice datagrid?

Are there any css templates with images online (and for free) which you could employ to a html-table, and make a real nice datagrid? Something similar like Ext js or equivalent. I mean something "finished" someone has made. I have quite good css skills but don't trust my photoshop skills. ...

WPF Layout question... How to scroll and auto-size content?

All, I am coming from a primarily ASP.NET background, but have experience with Windows forms as well. I am trying to learn how to layout my WPF app. I have the following code: <Grid> <Grid.RowDefinitions> <RowDefinition Height="40" /> <RowDefinition Height="*" /> <RowDefinition Height="40" /> </Grid.R...

WPF TextBox lostfocus as attached property

I have a Grid with many TextBoxes and I want to call NotifyPropertyChanged() method to update some other controls everytime one of these TextBox-es changed the value = lost the focus (I don't want to use PropertyChanged as UpdateSourceTrigger) This is what I can do: <Grid TextBoxBase.TextChanged="My_TextChanged" > ... </Grid> I ne...

How do I implement WPF group box than spans two columns?

Here is the layout I want: Grid with 2 columns, 2 rows Row 1 should contain a group box that spans both columns. Row 2, Column 1 will contain a group box Row 2, Column 2 will contain another group box. In row 1's group box, I want the left side to have a stack of labels/combo boxes. On the right side will be a stack of labels/checkbo...

Random Tile layout

I need to place tiles on a large grid radiating from a central point in a way that looks organic and random. New tiles will need to find an open space on the grid that is touching at least 1 other tile. Can anyone point me in the right to direction to anything that might help with this? Or some basic concepts I can read up on that are i...

Telerik MVC: Loading Grid with ajax request don't work.

I have a Telerik MVC Tabstrip. I have used: .LoadContentFrom("Grid", "Orders"); "Grid" Action just returns view without model. Then the Ajax request should have been fired to get the data. It is loading the grid normally but it is not calling the Ajax request to fill the data. If I am calling the same action normally i.e. without aj...

GUI layout -how?

I've been working with a few RAD gui builders lately. I absolutely despise CSS ( camel is a horse designed by committee etc.) What algorithms are used by packing managers(java/tk). Most GUI toolkits I've used have some alternative to absolute positioning, sorry for the ambiguity but how do you start thinking about implementing a packing...

ExtJS's XmlReader field mapping.

Hi , I can't manage to get this Ext.data.XmlReader's CDATA field mapping to work. <script> var store = new Ext.data.Store({ url: '../data/data.xml', // specify a XmlReader reader: new Ext.data.XmlReader({ record: 'entry', fields:[ { name: 'field1', type: 'date', mapping:'field1'}, ...

WPF image offset

I have image with size 800x600 and i need to show small image fragment 90x30 with offset x=12 and y 12. I create brush for that but i dont know how to make offset. var source = new ImageBrush(groundSource); source.Stretch = Stretch.None; source.AlignmentX = AlignmentX.Left; source.Alig...

What is the best way to collapse an optional Grid Column at runtime?

Currently I have a Grid with 6 optional fields, one on each row, in a data template bound to my view model. 6 Rows - 2 Columns Column 0 has the label Column 1 has the content associated with the label. In this case I want to collapse the column when the Column 0 label is null. My plan is to simply create a converter, if content is ...

How to loop through the extjs grid object to get its elements and values

Hello, I have created a grid and want to access it when i click on save button in a page. How can i loop the grid object to get its elemnts and its values ? ...

Simple Gallery Layout for Videos [jQuery]

<ul id="thumb"> <li class="active"><a href="#"><img src="img/thumb1.png" alt="" /></a></li> <li><a href="#"><img src="img/thumb2.png" alt="" /></a></li> <li><a href="#"><img src="img/thumb3.png" alt="" /></a></li> <li><a href="#"><img src="img/thumb4.png" alt="" /></a></li> </ul> <div id="video-display"> <div class="...

CSS Height Set Dynamically

So I'm inspecting this site: http://www.grittirollo.it/ and it appears that the content that slides out has a fixed height. Is there no way to set this dynamically? ...

Fixed grid header inside usercontrol in silverlight 4.0

Hi, I'm face to a problem really hard to solve and I found nothing in internet. I have a control used in parts of the application that is a customized grid. My problem is that in a part of the application. They put a scrollViwer to make it scrollable and they asked me to fix the header row to make it always visible. I found solution ...

Ext gridfilter plugins specify which column header to place it in?

In the ext gridfilter plugin, how can I setup the grid filter to display in a column header of a field that doesn't necessarily match the dataindex value? It seems to match up to whatever the dataindex is set to, am I not seeing an option to apply it to a custom column that isn't matched to the dataindex value? ...

ExtJS grid alternative with more flexible license?

The ExtJS grid is awesome. However, the GPL license is not. Is there a similar alternative available under a more flexible license? It must have inline cell editing. ...

Best data grid for php based application using ajax

What is the best data grid for php based application using ajax? Any reference please? ...

How to set width in Ext.grid.ColumnModel in percentage terms?

How to set width in Ext.grid.ColumnModel in percentage terms? ...

Generate strip/grid from photo in .NET

Is there any component available for generating image strips and grids from single photo? ...

Putting Styles on controls inside a Grid style

I want' to define that every control of specific type inisde a grid gets a Style. This is easy just put the styles with TargetType inside the grid resources. But what then if I wan't to reuse this grid as a style? I can create a grid style and have a setter to resources but can only put one style there. <Style x:Key="GridStyle" TargetT...