Table of contents

Introduction

Development Environment

Web Development and Improvements in user experience

(Productivity and Enterprise-level Application Development Features)

Ajax Overview, [[21759|GeneXus' target='_blank'>Ajax' target='_blank'>Ajax Overview, [[21759|GeneXus and Ajax]]

Business Components

Business Component - Publication as an Enterprise Java Bean

Practical course: Bluesky Charters
 

Application Localization

Application Localization
Demo
Translation Tool
Help "in any language"
Practical course: Bluesky Charters
 

Patterns

About this topic
Patterns based development
Description
Built in Patterns
Work With Pattern
Demo: Work With Pattern
Practical course: Patterns
 

Better data model

Null handling optimizes navigations
Nulls property

 

User experience

New options on rightclick in win
 

Reverse Engineering

Database Reverse Engineering Tool
 

New Platforms

MySQL
.Net Mobile Generator
More J2EE support than ever
 

Data Types and Methods

Message Queue handling data types

DirectoryDataType
LDAP Data Type

URL access Property
New IIF function
New byte count function
New Methods for attributes, variables and enumerated domains!
XSLTApply Method
Procedures can now call web objects
Web Services: Grouping Locations
News about model, object, and control properties


i
This is not the latest version of this document; to access the latest version, click here.
Unofficial Content

The Rows property allows you to set the number of records to be loaded (in Web Panels) or the number of empty lines (in Web TRNs) in a grid or freestyle grid.
This property can be used at design time and execution time.

Description

This property only applies to grids or freestyle grids with base tables.

Default values:

Object Value Comments
TRNs 5 Indicates the number of empty lines to be shown on the grid
Web Panels 0 (Unlimited) Indicates the number of records to be loaded in the grid

The 0 value in Web Panels indicates that there will be as many displayed lines as records resulting from the associated query.
The 0 value in Web TRNs indicates that there will be no empty lines in the grid.


At design time, you can change the value and view the number of lines that will be shown at execution time.

To allow the end user to enter lines one by one in a web transaction, you can set this property by combining it with the AddLines Method at execution time, as follows:

Event Start
    if &Mode = 'INS'
        Grid1.Rows = 1
    else    // &Mode = UPD / DLT / DSP
        Grid1.Rows = 0
    endif
EndEvent

Event 'AddLines'
    Grid1.AddLines(1)
EndEvent  // 'Addlines'

Then, the end user can press the AddLines button in Insert Mode to add empty lines one by one to the Transaction as follows:

Backward compatibility

The 0 value in Web TRNs indicates that there will be no empty lines in the grid. However, in GeneXus previous to 9.0 versions, the 0 value indicates that there will be the default amount of empty lines in the grid (this is five empty lines).

Scope

Languages: .NET, Java
Objects: Transactions, Web Panels
Controls: Free Style Grids, Grids
Interface: Web

Last update: February 2024 | © GeneXus. All rights reserved. GeneXus Powered by Globant