Completed
Last Updated: 11 Jun 2021 12:50 by ADMIN
It doesn't seem possible to set the width or height of gauges through the MVC server wrappers. This is useful functionality that should be easy to implement.
Completed
Last Updated: 11 Jun 2021 11:15 by ADMIN
Created by: Stéphan Parrot
Comments: 0
Category: UI for ASP.NET MVC
Type: Feature Request
1
It would be nice to be able to set options other than the window's title and set events on the window that is exposed by the grid editing options.
Completed
Last Updated: 11 Jun 2021 11:17 by ADMIN
Created by: Troep
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
1
html select has a groupoption tag, and also the possibility to add classes or styles to indivual rows in a combobox.

With it, you can combine the items in a combobox in groups/categories.

Styling could ofcourse be done by using custom-templates
Completed
Last Updated: 07 Jun 2013 19:28 by ADMIN
For example if you use grid in Client mode it's use case sensitive sorting without any post-back to server which is real cool. But in situation when you need to export grid data to(csv, pdf...) you can pass sorting options from grid to server, collect all data from DB and create exported document. BUT for example SQL server use case insensitive default sorting, so exported documen will not have same data order like grid.
Completed
Last Updated: 25 Mar 2024 13:34 by ADMIN
Created by: Marcel
Comments: 1
Category: UI for ASP.NET MVC
Type: Feature Request
0

I'm using the ClientTemplate-Feature to render buttons for CRUD-actions in grids. For one entity I have to use a TreeList instead of a Grid due to parent-child relations. It would be great if I could use the same templates I use for the grid for the treelist as well.

Example:

columns.Bound(x => x.UserName)
        .ClientTemplate("<a href='" + Url.Admin().Account() + "/#= Id#/edit'>#= UserName #</a>")
        .Width(300);
Completed
Last Updated: 29 Jun 2021 06:21 by ADMIN
Created by: Julie
Comments: 3
Category: UI for ASP.NET MVC
Type: Feature Request
0
Using the MVC wrappers to style checkboxes and assign bindings works well except for the visible binding. the style is applied to the hidden input rather than the created styled label. 
1 2 3 4 5 6