Site Search:
Sign in | Join | Help

This Blog

Syndication

Tags

No tags have been created or used yet.

Janus System

All things for all Janus products

May 2007 - Posts

  • Navigate to a specific row in a Janus Grid

    I have occasion to want a grid to move to a spcific row. Right now, I know the row number, I just want to move back after some operation (I rebind the grid, which causes it to move back to the top)

    Dim a As Int16
    'record the row
    a = Me.GridEX1.FirstRow
    
    
    binddata()
    
    
    'move back
    Me.GridEX1.FirstRow = a
     

  • GridEx Button Columns

    How to determine which button was clicked if there is more than 1 button in a row:
    The key is defined when adding the column.

    private sub ColumnButtonClick(ByVal sender As Object, ByVal e As Janus.Windows.GridEX.ColumnActionEventArgs) Handles grdPeople.ColumnButtonClick

     If e.Column.Key = "firstButton" Then
      

     End If

    If e.Column.Key = "secondButton" Then

    End If

    end sub

  • Janus CalendarCombo issue

    To fix the bug where there is significant amounts of extra white space in the calendarCombo, change the "useCompatibleTextRendering" property to true and build the application.  After you set the property back to false it should display correctly. 

     

More Posts Next page »