hi,
i have a datagrid which contains a number of itemrenderers, it is populated each time a user does a search. Is there an event which can tell me when the datagrid has completed rendering all new rows and item renderers?
I need to trigger an event once everything has been created so that i can resize then container which holds the g...
I have a Grid inside a ScrollViewer inside a Border inside a StackPanel inside a Window.
The ScrollViewer puts a scrollbar on the right, but it is not scrollable.
How can I get the ScrollViewer to make its contents scrollable?
<Window x:Class="TestScroll234343.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presenta...
Can you please show how to set and save the background color of the viewport3D. Whenever I save no background is visible only model, I tried the grid but that gets everything in the grid? Any help will do?
...
I am useing C1FlexGrid and i set the datatable as c1flexgrid's datasource. now i want to map filed of datatable to columns of c1flexgrid by code. please tell me how to do it.
...
Hello i put TextBox Column into WPF grid like this:
DevExpress.Wpf.Grid.GridColumn col = new GridColumn();
col.FieldName = dr["FieldName"].ToString();
col.Header = dr["Caption"].ToString();
//Gets or sets the name of the column
col.Name = "c"+ dr["FieldID"].ToString();
Grid.Columns.Add(col);
Does anyone knows how to add a CheckBox t...
Using DevExpress's Grid, what the easiest way to implement a delete of a selection of rows from the UI only. The desired behavior is for the user to multi-select rows then press DEL.
I have enabled editing and multi-select
...
How to add easily a cell padding for a Grid in Silverlight? To set Margins for each cell looks very noisy.
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefiniti...
Short and simple version: I have a project where I need to define a DIV that will repeat horizontally and then wrap to the next row when out of space (tabular-like grid). I've seen mention of jQuery.GridLayout, but the demo/homepage is 404'd so I have no clue if this is what I'm looking for. Simply, I'm trying to achieve this:
Div.ItemC...
Hello, does anyone knows how to indicate when Column property "width" is changed on this grid? It is no such event like ColumnWidthChanged in this grid...
I want to save my widths of columns to database later, when tthis event is occoured.
...
I have a couple of Accordions in a Silverlight App I'm writing (even an Accordion inside of an Accordion!) but the layout is driving me insane.
For example, suppose you have a 500x500 Accordion. If you have 3 AccordionItems, the "Content" area is whatever the height/width of the Accordion is, MINUS the width/height of each header times ...
Hi everyone,
I have a problem. I used Gridbaglayout in my JFrame. One of the component is JPanel.
I wanted to draw a gridline as a background for my JPanel. e.g in the program below, it supposed to produce 3 vertical and 3 horizontal lines, however it only shows 2 vertical and 2 horizontal line. the last line was not shown.
Another pro...
Hello. This is something of an architecture question.
I have this idea of having a server with huge memory, that is used as a big objects cache holder. The clients send "Actions" to this server(like Search Person with property age<13). And then, this machine(to complicate things it would be nice to have more instances of this server and...
Hello, does anyone knows, which event is raised, when user changes width of column for WPF DevExpress grid? I want to use it to store columns widths in database.
...
Hi there,
I'm using dojo dataGrid (1.2.2), just wondering if there is a way for me to update data in a give row, and reflect the change in the grid without reloading the whole grid?
For example, I'd like to set the 5th row column "x" from 1 to 5
console.info(thisGrid.getItem(5).i.x); //1
thisGrid.getItem(5).x = 5;
??update the row
conso...
I have found bunch of editable grids when on google. Which is the best free grid with add edit delete pagination sorting functionality?
I have tried phpDataGrid 4.2.8. I think it's little slow.
Thanks in advance!!
...
I want to show my polar axes on top of the filled contour plot.
Here is my main code.
//CODE
b=polar([0 2*pi], [0 sqrt((max(X(log1))+5)^2+(max(Y(log2))+5)^2)]);
delete(b);
hold on;
cl = [-6:1:0];
g=contourf(xi,yi,zi,cl);
colormap jet;
colorbar('YLim', [-7 0],'YTickLabel',{'0','.000001','.00001','.0001','.001','.01','.1','1'});
/...
Hi, we have been using TurboDBAdmin (an ajax tool) so users of CMS websites can administer their data (it saves us writing a CRUD application each time) and is very easy to install and users like the Excel type interface however it has several limitations and is not now supported. Tools like this are a bit more modern and have further f...
Hello,
i have a problem with wpf-grid in .net-framework. I have defined a grid in a UserControl, which contains a listview, that shows some content. The content of the listview is presented with DataTemplate and contains a TextBlock which could getting very wide.
My grid should separate the UserControl in two 50-50 parts. Both parts sho...
Hello, does anyone uses this control and knows how to load data to it from simple datatable. There is not such a trick as DataSource...
...
I am trying to get the dojo button that is within the data grid to use styling. Currently it does not use the styling.
HTML:
<table dojoType="dojox.grid.DataGrid" class="soria" id="grid1" jsId="grid1" elasticView="2" store="theStore" selectionMode="single" query="{grid1:'*'}">
<thead>
<TR>
<th field="0" formatter="getButt...