Browse By Tags

  • Row level (entity-level) validation

    Hi,

    I have put an entity level data annotation for validation 

     

    [

     

    CustomValidation(typeof(TestValidators), "PreventExpensiveUnits")]

     

     

     

    public partial class TestMessage

     

     

    and cannot make it to show validation error in ValidationSummary…

  • Summation not updating

    I have two columns, one is a simple textbox control and the second is a 3rd party numeric control.

    When I make a change in the first column and use an arrow key to go to the next row, the summation immediately updates.

    But for the second column, the…

  • Wrap Header Text

    Is there a way to achieve wrapping the text in the header column ? I am building the grid at run time using unbound columns so nothing is hard coded.

  • How to disable esc key on XamGrid?

    Hi,

    I want to disble the esc key on xamgrid, how can i do this?

    I have editing settings on my grid. when I add new row to xamgrid, it will add and it will apply edit settings on newly created row. Now while in edit mode if i press esc key the row is losing…

  • Unbound Column Exception

    I have attached a simple project recreating my scenario.

    Version : 10.2.20102.2005

    When I click into different cells back and forth I get an unhandled exception

    "Operation is not valid due to the current state of the object"

    More of the…

  • Resort after binding

    After I rebind data to my grid, the rows need resorting, is there a RefreshSort() method ? If not how would I do this?

  • Change Text Color in Summary Row only

    I am trying to set the Background and Text color of the Summary row for the grid.

    I am using this Style

    <Style TargetType="ig:CellControl" x:Key="SummaryRowStyle">
    <Setter Property="Background" Value="#FF6693CF"…
  • XamGrid Style

    I have the following Style for my XamGrid.

    The only thing I can't figure out is the last row in the grid does not have a horizontal border on the bottom side, refer to image. Any ideas where I went wrong?

     

     

    Here is the code:

    <Style x:Key="GridCellStyle…
  • Alternate rows in XamwebGrid.

    Hello All,

    I am using XamWebGrid to disaply data. In XamWebGrid I have enabled Alternate rows.
    As per requirement, want to show some rows with different bg, so applying cell style in cellControl attach event of that grid.
    Bbut I could not able to apply style…