tagged [grid]
Specifying RowDefinition.Height in code
Specifying RowDefinition.Height in code When you're creating a Grid in xaml you can define the RowDefinitions as such I have a need to do the same thing in code. I know I can write ``` RowDefinition r...
Set Grid Column/Row width/Height dynamically
Set Grid Column/Row width/Height dynamically I need to create a WPF grid dynamically from code behind. This is going okay and I can do it so that I set the content widths but what I need to do is set ...
- Modified
- 17 Mar at 04:15
Uncaught TypeError : cannot read property 'replace' of undefined In Grid
Uncaught TypeError : cannot read property 'replace' of undefined In Grid I'm new in using Kendo Grid and Kendo UI . My question is how can i resolve this Error This is my Code on my KendoGrid ``` $("#...
- Modified
- 28 Jan at 00:35
Format DateTime in Kendo UI Grid using asp.net MVC Wrapper
Format DateTime in Kendo UI Grid using asp.net MVC Wrapper I want to build a Kendo UI Grid with format date dd//MM/yyyy. However, all questions that I found about this, it were resolved with code . So...
- Modified
- 10 Sep at 12:28
How can I make Bootstrap 4 columns have a height of 100%?
How can I make Bootstrap 4 columns have a height of 100%? how can I make a column take up 100% height of the browser w bootstrap 4? See the following: [https://codepen.io/johnpickly/pen/dRqxjV](https:...
- Modified
- 27 May at 12:51
Bottom borders on WPF Grid
Bottom borders on WPF Grid I'd like to set a bottom border on each row in the grid, but can only find how to put all 4 borders around each cell.. ```
Changing Grid Row background color in WPF
Changing Grid Row background color in WPF I want to set 2 colors to my grid rows, the even ones will have one color and the others will have another. I dont know ho to even start of doing it. ```
How can I create an enum using numbers?
How can I create an enum using numbers? Is it possible to make an enum using just numbers in C#? In my program I have a variable, Gain, that can only be set to 1, 2, 4, and 8. I am using a propertygri...
- Modified
- 1 Jun at 18:19
Dojo: how to get row data in grid's context menu item handler?
Dojo: how to get row data in grid's context menu item handler? I'm using Dojo 1.4. Given a dojox.grid.DataGrid in markup: ```
- Modified
- 6 Jul at 18:44
How to hide WPF Grid Overflow (like CSS overflow:hidden)
How to hide WPF Grid Overflow (like CSS overflow:hidden) I'm currently creating a metro styled app. Because of this I need to extend my client area out of my window to draw the shadow. The problem now...
What's the right way to float right or left using the material-ui appbar with material-ui-next?
What's the right way to float right or left using the material-ui appbar with material-ui-next? I can't figure out if I'm using the right approach to get the login/logout buttons to float right in whi...
- Modified
- 27 Aug at 17:55
Binding List<T> to DataGridView in WinForm
Binding List to DataGridView in WinForm I have a class and a `List` to which I add some items. The list is bound to my `DataGridView`. ``` List persons = new List(); persons.Add(new Person(){Name="Joe...
- Modified
- 1 Jun at 17:26
Dynamically toggle visibility of WPF grid column from C# code
Dynamically toggle visibility of WPF grid column from C# code My problem is: I can't find out how to toggle the visibility of my WPF grid column. Assume following XAML markup: ```
- Modified
- 7 Oct at 14:39
CSS grid wrapping
CSS grid wrapping Is it possible to make a CSS grid wrap without using media queries? In my case, I have a non-deterministic number of items that I want placed in a grid and I want that grid to wrap. ...
Kendo UI reference not working in Razor view
Kendo UI reference not working in Razor view I am trying to create a Telerik Grid view but when I go to reference kendo it does not recognize it. Visual Studio is giving me an error when I try to refe...
- Modified
- 8 Apr at 16:47
Transform Request to Autoquery friendly
Transform Request to Autoquery friendly We are working with a 3rd party grid (telerik kendo) that has paging/sorting/filtering built in. It will send the requests in a certain way when making the GET ...
- Modified
- 1 Feb at 17:52
Kendo dropdownlist produces TypeError: n.slice is not a function
Kendo dropdownlist produces TypeError: n.slice is not a function Do I need to define the schema? If so, what should that look like? My searches for this seem to only turn up js solutions, I'm looking ...
- Modified
- 6 Jun at 15:33
How to use Kendo UI Grid with ToDataSourceResult(), IQueryable<T>, ViewModel and AutoMapper?
How to use Kendo UI Grid with ToDataSourceResult(), IQueryable, ViewModel and AutoMapper? What is the best approach to load/filter/order a Kendo grid with the following classes: ``` public class CarVi...
- Modified
- 19 May at 15:45
box-shadow on bootstrap 3 container
box-shadow on bootstrap 3 container I'm building a little website using bootstrap. The base structure looks like this: ``` .row { height: 100px; background-color: green; } ...
- Modified
- 21 Aug at 20:44
wpf popup doesn't close automatically when datagrid inside popup captures the mouse
wpf popup doesn't close automatically when datagrid inside popup captures the mouse I have a popup with `StaysOpen=False` so I want to close it by clicking anywhere outside of popup. Inside a popup I ...
- Modified
- 27 Apr at 19:20
Best dynamic JavaScript/JQuery Grid
Best dynamic JavaScript/JQuery Grid I'm working with JavaScript, JQuery and HTML. UI Of my project is completely dynamic. I am looking for a dynamic JavaScript/JQuery Grid which supports following fea...
- Modified
- 30 Dec at 09:8
force css grid container to fill full screen of device
force css grid container to fill full screen of device How do I force a css grid container take the full width and height of the device screen for a single page app? Modified example is from Mozilla: ...
How to set the maximum width of a column in CSS Grid Layout?
How to set the maximum width of a column in CSS Grid Layout? Using [CSS Grid Layout](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout), to have a page with a right column which size i...
- Modified
- 2 Aug at 11:21
C# Foreach XML Node
C# Foreach XML Node I'm saving 2-dimensional coordinates on an XML file with a structure similar to: I can open the XML file and read it via the XmlTextReader, but how do I loop through the coordinate...
- Modified
- 27 Jan at 09:7