本文整理汇总了PHP中TextViewColumn::SetMaxLength方法的典型用法代码示例。如果您正苦于以下问题:PHP TextViewColumn::SetMaxLength方法的具体用法?PHP TextViewColumn::SetMaxLength怎么用?PHP TextViewColumn::SetMaxLength使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TextViewColumn
的用法示例。
在下文中一共展示了TextViewColumn::SetMaxLength方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: AddSingleRecordViewColumns
protected function AddSingleRecordViewColumns(Grid $grid)
{
//
// View column for id_persona field
//
$column = new TextViewColumn('id_persona', 'Id Persona', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for no_tipo_persona field
//
$column = new TextViewColumn('id_tipo_persona_no_tipo_persona', 'Id Tipo Persona', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for co_dni_cuit field
//
$column = new TextViewColumn('co_dni_cuit', 'Dni Cuit', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for co_legajo field
//
$column = new TextViewColumn('co_legajo', 'Legajo', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for no_persona field
//
$column = new TextViewColumn('no_persona', 'Nombre Persona', $this->dataset);
$column->SetOrderable(true);
$column->SetMaxLength(75);
$column->SetFullTextWindowHandlerName('public_ods_personaGrid_no_persona_handler_view');
$grid->AddSingleRecordViewColumn($column);
//
// View column for no_empresa field
//
$column = new TextViewColumn('id_empresa_no_empresa', 'Id Empresa', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for no_area field
//
$column = new TextViewColumn('id_area_no_area', 'Id Area', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
}
示例2: AddSingleRecordViewColumns
protected function AddSingleRecordViewColumns(Grid $grid)
{
//
// View column for id_tipo_espacio field
//
$column = new TextViewColumn('id_tipo_espacio', 'Id Tipo Espacio', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for no_tipo_espacio field
//
$column = new TextViewColumn('no_tipo_espacio', 'No Tipo Espacio', $this->dataset);
$column->SetOrderable(true);
$column->SetMaxLength(75);
$column->SetFullTextWindowHandlerName('public_sga_tipo_espacioGrid_no_tipo_espacio_handler_view');
$grid->AddSingleRecordViewColumn($column);
//
// View column for no_tipo_espacio field
//
$column = new TextViewColumn('id_tipo_espacio_padre_no_tipo_espacio', 'Id Tipo Espacio Padre', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for ds_referencia field
//
$column = new TextViewColumn('ds_referencia', 'Ds Referencia', $this->dataset);
$column->SetOrderable(true);
$column->SetMaxLength(75);
$column->SetFullTextWindowHandlerName('public_sga_tipo_espacioGrid_ds_referencia_handler_view');
$grid->AddSingleRecordViewColumn($column);
}
示例3: AddSingleRecordViewColumns
protected function AddSingleRecordViewColumns(Grid $grid)
{
//
// View column for id_periodicidad field
//
$column = new TextViewColumn('id_periodicidad', 'Id Periodicidad', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for no_periodicidad field
//
$column = new TextViewColumn('no_periodicidad', 'Nombre Periodicidad', $this->dataset);
$column->SetOrderable(true);
$column->SetMaxLength(75);
$column->SetFullTextWindowHandlerName('public_sga_periodicidadGrid_no_periodicidad_handler_view');
$grid->AddSingleRecordViewColumn($column);
//
// View column for va_frecuencia field
//
$column = new TextViewColumn('va_frecuencia', 'Frecuencia', $this->dataset);
$column->SetOrderable(true);
$column = new NumberFormatValueViewColumnDecorator($column, 4, ',', '.');
$grid->AddSingleRecordViewColumn($column);
}
示例4: AddSingleRecordViewColumns
protected function AddSingleRecordViewColumns(Grid $grid)
{
//
// View column for first_name field
//
$column = new TextViewColumn('first_name', 'First Name', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for middle_name field
//
$column = new TextViewColumn('middle_name', 'Middle Name', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for last_name field
//
$column = new TextViewColumn('last_name', 'Last Name', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for party_affiliation field
//
$column = new TextViewColumn('party_affiliation', 'Party Affiliation', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for address1 field
//
$column = new TextViewColumn('address1', 'Address1', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for address2 field
//
$column = new TextViewColumn('address2', 'Address2', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for city field
//
$column = new TextViewColumn('city', 'City', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for state field
//
$column = new TextViewColumn('state', 'State', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for zip field
//
$column = new TextViewColumn('zip', 'Zip', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for phone field
//
$column = new TextViewColumn('phone', 'Phone', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for fax field
//
$column = new TextViewColumn('fax', 'Fax', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for email_address field
//
$column = new TextViewColumn('email_address', 'Email Address', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for website field
//
$column = new TextViewColumn('website', 'Website', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for photo_link field
//
$column = new TextViewColumn('photo_link', 'Photo Link', $this->dataset);
$column->SetOrderable(true);
$column->SetMaxLength(75);
$column->SetFullTextWindowHandlerName('public_office_holderGrid_photo_link_handler_view');
$grid->AddSingleRecordViewColumn($column);
//
// View column for notes field
//
$column = new TextViewColumn('notes', 'Notes', $this->dataset);
$column->SetOrderable(true);
$column->SetMaxLength(75);
$column->SetFullTextWindowHandlerName('public_office_holderGrid_notes_handler_view');
$grid->AddSingleRecordViewColumn($column);
}
示例5: AddSingleRecordViewColumns
protected function AddSingleRecordViewColumns(Grid $grid)
{
//
// View column for user_id field
//
$column = new TextViewColumn('user_id', 'User Id', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for page_name field
//
$column = new TextViewColumn('page_name', 'Page Name', $this->dataset);
$column->SetOrderable(true);
$column->SetMaxLength(75);
$column->SetFullTextWindowHandlerName('phpgen_user_permsGrid_page_name_handler_view');
$grid->AddSingleRecordViewColumn($column);
//
// View column for perm_name field
//
$column = new TextViewColumn('perm_name', 'Perm Name', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
}
示例6: AddSingleRecordViewColumns
protected function AddSingleRecordViewColumns(Grid $grid)
{
//
// View column for id_tarea_plan field
//
$column = new TextViewColumn('id_tarea_plan', 'Id Tarea Plan', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for ds_referencia field
//
$column = new TextViewColumn('id_accion_ds_referencia', 'Acción', $this->dataset);
$column->SetOrderable(true);
$column = new ExtendedHyperLinkColumnDecorator($column, $this->dataset, 'accion.php?operation=view&pk0=%id_accion%' , '_self');
$grid->AddSingleRecordViewColumn($column);
//
// View column for ds_referencia field
//
$column = new TextViewColumn('id_espacio_ds_referencia', 'Espacio', $this->dataset);
$column->SetOrderable(true);
$column = new ExtendedHyperLinkColumnDecorator($column, $this->dataset, 'espacio.php?operation=view&pk0=%id_espacio%' , '_self');
$grid->AddSingleRecordViewColumn($column);
//
// View column for ds_observacion field
//
$column = new TextViewColumn('id_bien_ds_observacion', 'Bien', $this->dataset);
$column->SetOrderable(true);
$column = new ExtendedHyperLinkColumnDecorator($column, $this->dataset, 'bien.php?operation=view&pk0=%id_bien%' , '_self');
$grid->AddSingleRecordViewColumn($column);
//
// View column for no_periodicidad field
//
$column = new TextViewColumn('id_periodicidad_no_periodicidad', 'Periodicidad', $this->dataset);
$column->SetOrderable(true);
$column = new ExtendedHyperLinkColumnDecorator($column, $this->dataset, 'periodicidad.php?operation=view&pk0=%id_periodicidad%' , '_self');
$grid->AddSingleRecordViewColumn($column);
//
// View column for ds_detalle field
//
$column = new TextViewColumn('ds_detalle', 'Detalle', $this->dataset);
$column->SetOrderable(true);
$column->SetMaxLength(75);
$column->SetFullTextWindowHandlerName('public_sga_tarea_planGrid_ds_detalle_handler_view');
$grid->AddSingleRecordViewColumn($column);
//
// View column for ds_referencia field
//
$column = new TextViewColumn('ds_referencia', 'Descripción', $this->dataset);
$column->SetOrderable(true);
$column->SetMaxLength(75);
$column->SetFullTextWindowHandlerName('public_sga_tarea_planGrid_ds_referencia_handler_view');
$grid->AddSingleRecordViewColumn($column);
//
// View column for fe_inicio field
//
$column = new DateTimeViewColumn('fe_inicio', 'Fecha Início', $this->dataset);
$column->SetDateTimeFormat('d/m/Y H:i:s');
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
}
示例7: AddSingleRecordViewColumns
protected function AddSingleRecordViewColumns(Grid $grid)
{
//
// View column for EVENTO_ID field
//
$column = new TextViewColumn('EVENTO_ID', 'EVENTO ID', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for NOMBRE field
//
$column = new TextViewColumn('NOMBRE', 'NOMBRE', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for FECHA_HORA field
//
$column = new DateTimeViewColumn('FECHA_HORA', 'FECHA HORA', $this->dataset);
$column->SetDateTimeFormat('Y-m-d');
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for LUGAR field
//
$column = new TextViewColumn('LUGAR', 'LUGAR', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for DESCRIPCION field
//
$column = new TextViewColumn('DESCRIPCION', 'DESCRIPCION', $this->dataset);
$column->SetOrderable(true);
$column->SetMaxLength(75);
$column->SetFullTextWindowHandlerName('GE_EVENTOGrid_DESCRIPCION_handler_view');
$grid->AddSingleRecordViewColumn($column);
//
// View column for FEC_CREACION field
//
$column = new DateTimeViewColumn('FEC_CREACION', 'FEC CREACION', $this->dataset);
$column->SetDateTimeFormat('Y-m-d');
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for USUARIO_CREACION field
//
$column = new TextViewColumn('USUARIO_CREACION', 'USUARIO CREACION', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for FEC_ULTIMA_MOD field
//
$column = new DateTimeViewColumn('FEC_ULTIMA_MOD', 'FEC ULTIMA MOD', $this->dataset);
$column->SetDateTimeFormat('Y-m-d');
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for USUARIO_ULTIMA_MOD field
//
$column = new TextViewColumn('USUARIO_ULTIMA_MOD', 'USUARIO ULTIMA MOD', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for NOMBRE field
//
$column = new TextViewColumn('LA1', 'CIUDAD', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
}
示例8: AddSingleRecordViewColumns
protected function AddSingleRecordViewColumns(Grid $grid)
{
//
// View column for title field
//
$column = new TextViewColumn('office_id_title', 'Office Title', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for name field
//
$column = new TextViewColumn('name', 'Document Name or Description', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for link field
//
$column = new TextViewColumn('link', 'URL to Document', $this->dataset);
$column->SetOrderable(true);
$column->SetMaxLength(75);
$column->SetFullTextWindowHandlerName('public_office_docsGrid_link_handler_view');
$grid->AddSingleRecordViewColumn($column);
}
示例9: AddSingleRecordViewColumns
protected function AddSingleRecordViewColumns(Grid $grid)
{
//
// View column for id_espacio field
//
$column = new TextViewColumn('id_espacio', 'Id Espacio', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for ds_referencia field
//
$column = new TextViewColumn('id_tipo_espacio_ds_referencia', 'Tipo Espacio', $this->dataset);
$column->SetOrderable(true);
$column = new ExtendedHyperLinkColumnDecorator($column, $this->dataset, 'tipo_espacio.php?operation=view&pk0=%id_tipo_espacio%' , '_self');
$grid->AddSingleRecordViewColumn($column);
//
// View column for ds_referencia field
//
$column = new TextViewColumn('id_espacio_contenedor_ds_referencia', 'Espacio Contenedor', $this->dataset);
$column->SetOrderable(true);
$column = new ExtendedHyperLinkColumnDecorator($column, $this->dataset, 'espacio.php?operation=view&pk0=%id_espacio_contenedor%' , '_self');
$grid->AddSingleRecordViewColumn($column);
//
// View column for co_espacio field
//
$column = new TextViewColumn('co_espacio', 'Código Espacio', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for no_espacio field
//
$column = new TextViewColumn('no_espacio', 'Nombre Espacio', $this->dataset);
$column->SetOrderable(true);
$column->SetMaxLength(75);
$column->SetFullTextWindowHandlerName('public_sga_espacioGrid_no_espacio_handler_view');
$grid->AddSingleRecordViewColumn($column);
//
// View column for co_plano field
//
$column = new TextViewColumn('co_plano', 'Código Plano', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for no_planta field
//
$column = new TextViewColumn('id_planta_no_planta', 'Planta', $this->dataset);
$column->SetOrderable(true);
$column = new ExtendedHyperLinkColumnDecorator($column, $this->dataset, 'planta.php?operation=view&pk0=%id_planta%' , '_self');
$grid->AddSingleRecordViewColumn($column);
//
// View column for ds_referencia field
//
$column = new TextViewColumn('ds_referencia', 'Referencia', $this->dataset);
$column->SetOrderable(true);
$column->SetMaxLength(75);
$column->SetFullTextWindowHandlerName('public_sga_espacioGrid_ds_referencia_handler_view');
$grid->AddSingleRecordViewColumn($column);
}
示例10: AddSingleRecordViewColumns
protected function AddSingleRecordViewColumns(Grid $grid)
{
//
// View column for rpt_id field
//
$column = new TextViewColumn('rpt_id', 'Rpt Id', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for rpt_name field
//
$column = new TextViewColumn('rpt_name', 'Rpt Name', $this->dataset);
$column->SetOrderable(true);
$column->SetMaxLength(75);
$column->SetFullTextWindowHandlerName('GE_webreportsGrid_rpt_name_handler_view');
$grid->AddSingleRecordViewColumn($column);
//
// View column for rpt_title field
//
$column = new TextViewColumn('rpt_title', 'Rpt Title', $this->dataset);
$column->SetOrderable(true);
$column->SetMaxLength(75);
$column->SetFullTextWindowHandlerName('GE_webreportsGrid_rpt_title_handler_view');
$grid->AddSingleRecordViewColumn($column);
//
// View column for rpt_cdate field
//
$column = new DateTimeViewColumn('rpt_cdate', 'Rpt Cdate', $this->dataset);
$column->SetDateTimeFormat('Y-m-d');
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for rpt_mdate field
//
$column = new DateTimeViewColumn('rpt_mdate', 'Rpt Mdate', $this->dataset);
$column->SetDateTimeFormat('Y-m-d');
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for rpt_content field
//
$column = new DownloadDataColumn('rpt_content', 'Rpt Content', $this->dataset, $this->GetLocalizerCaptions()->GetMessageString('Download'));
$grid->AddSingleRecordViewColumn($column);
//
// View column for rpt_owner field
//
$column = new TextViewColumn('rpt_owner', 'Rpt Owner', $this->dataset);
$column->SetOrderable(true);
$column->SetMaxLength(75);
$column->SetFullTextWindowHandlerName('GE_webreportsGrid_rpt_owner_handler_view');
$grid->AddSingleRecordViewColumn($column);
//
// View column for rpt_status field
//
$column = new TextViewColumn('rpt_status', 'Rpt Status', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for rpt_type field
//
$column = new TextViewColumn('rpt_type', 'Rpt Type', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
}
示例11: AddSingleRecordViewColumns
protected function AddSingleRecordViewColumns(Grid $grid)
{
//
// View column for codice field
//
$column = new TextViewColumn('codice', 'Codice', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for formula field
//
$column = new TextViewColumn('formula', 'Formula', $this->dataset);
$column->SetOrderable(true);
$column->SetMaxLength(75);
$column->SetFullTextWindowHandlerName('formule_calcoloGrid_formula_handler_view');
$grid->AddSingleRecordViewColumn($column);
//
// View column for datains field
//
$column = new DateTimeViewColumn('datains', 'Datains', $this->dataset);
$column->SetDateTimeFormat('d-m-Y H:i:s');
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for datamod field
//
$column = new DateTimeViewColumn('datamod', 'Datamod', $this->dataset);
$column->SetDateTimeFormat('d-m-Y H:i:s');
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for descrizione field
//
$column = new TextViewColumn('descrizione', 'Descrizione', $this->dataset);
$column->SetOrderable(true);
$column->SetMaxLength(75);
$column->SetFullTextWindowHandlerName('formule_calcoloGrid_descrizione_handler_view');
$grid->AddSingleRecordViewColumn($column);
}
示例12: AddSingleRecordViewColumns
protected function AddSingleRecordViewColumns(Grid $grid)
{
//
// View column for id_bien field
//
$column = new TextViewColumn('id_bien', 'Id Bien', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for ds_referencia field
//
$column = new TextViewColumn('id_tipo_bien_ds_referencia', 'Id Tipo Bien', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for co_espacio field
//
$column = new TextViewColumn('id_espacio_co_espacio', 'Id Espacio', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for ds_observacion field
//
$column = new TextViewColumn('ds_observacion', 'Ds Observacion', $this->dataset);
$column->SetOrderable(true);
$column->SetMaxLength(75);
$column->SetFullTextWindowHandlerName('public_ods_bienGrid_ds_observacion_handler_view');
$grid->AddSingleRecordViewColumn($column);
}
示例13: AddSingleRecordViewColumns
protected function AddSingleRecordViewColumns(Grid $grid)
{
//
// View column for idFacturasAbonos field
//
$column = new TextViewColumn('idFacturasAbonos', 'IdFacturasAbonos', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for Fecha field
//
$column = new TextViewColumn('Fecha', 'Fecha', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for Monto field
//
$column = new TextViewColumn('Monto', 'Monto', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for CuentaIngreso field
//
$column = new TextViewColumn('CuentaIngreso', 'CuentaIngreso', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for NombreCuenta field
//
$column = new TextViewColumn('NombreCuenta', 'NombreCuenta', $this->dataset);
$column->SetOrderable(true);
$column->SetMaxLength(75);
$column->SetFullTextWindowHandlerName('NombreCuenta_handler');
$grid->AddSingleRecordViewColumn($column);
//
// View column for Usuarios_idUsuarios field
//
$column = new TextViewColumn('Usuarios_idUsuarios', 'Usuarios IdUsuarios', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for Facturas_idFacturas field
//
$column = new TextViewColumn('Facturas_idFacturas', 'Facturas IdFacturas', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for CerradoDiario field
//
$column = new TextViewColumn('CerradoDiario', 'CerradoDiario', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for FechaCierreDiario field
//
$column = new TextViewColumn('FechaCierreDiario', 'FechaCierreDiario', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for HoraCierreDiario field
//
$column = new TextViewColumn('HoraCierreDiario', 'HoraCierreDiario', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
}
示例14: AddSingleRecordViewColumns
protected function AddSingleRecordViewColumns(Grid $grid)
{
//
// View column for idAct_Movimientos field
//
$column = new TextViewColumn('idAct_Movimientos', 'IdAct Movimientos', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for Fecha field
//
$column = new TextViewColumn('Fecha', 'Fecha', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for Movimiento field
//
$column = new TextViewColumn('Movimiento', 'Movimiento', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for Origen field
//
$column = new TextViewColumn('Origen', 'Origen', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for Destino field
//
$column = new TextViewColumn('Destino', 'Destino', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for Entrega field
//
$column = new TextViewColumn('Entrega', 'Entrega', $this->dataset);
$column->SetOrderable(true);
$column->SetMaxLength(75);
$column->SetFullTextWindowHandlerName('Entrega_handler');
$grid->AddSingleRecordViewColumn($column);
//
// View column for Recibe field
//
$column = new TextViewColumn('Recibe', 'Recibe', $this->dataset);
$column->SetOrderable(true);
$column->SetMaxLength(75);
$column->SetFullTextWindowHandlerName('Recibe_handler');
$grid->AddSingleRecordViewColumn($column);
//
// View column for Estado field
//
$column = new TextViewColumn('Estado', 'Estado', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for MotivoMovimiento field
//
$column = new TextViewColumn('MotivoMovimiento', 'MotivoMovimiento', $this->dataset);
$column->SetOrderable(true);
$column->SetMaxLength(75);
$column->SetFullTextWindowHandlerName('MotivoMovimiento_handler');
$grid->AddSingleRecordViewColumn($column);
//
// View column for Observaciones field
//
$column = new TextViewColumn('Observaciones', 'Observaciones', $this->dataset);
$column->SetOrderable(true);
$column->SetMaxLength(75);
$column->SetFullTextWindowHandlerName('Observaciones_handler');
$grid->AddSingleRecordViewColumn($column);
//
// View column for NumOrden field
//
$column = new TextViewColumn('NumOrden', 'NumOrden', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for BodegaDestino field
//
$column = new TextViewColumn('BodegaDestino', 'BodegaDestino', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for idActivo field
//
$column = new TextViewColumn('idActivo', 'IdActivo', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
}
示例15: AddSingleRecordViewColumns
protected function AddSingleRecordViewColumns(Grid $grid)
{
//
// View column for descrizione field
//
$column = new TextViewColumn('lis-codart_descrizione', 'Codice Articolo', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for lisdesc field
//
$column = new TextViewColumn('lisdesc', 'Descrizione', $this->dataset);
$column->SetOrderable(true);
$column->SetMaxLength(75);
$column->SetFullTextWindowHandlerName('listino_articoliGrid_lisdesc_handler_view');
$grid->AddSingleRecordViewColumn($column);
//
// View column for lis-unimis field
//
$column = new TextViewColumn('lis-unimis', 'Unità misura', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for lis-przacq field
//
$column = new TextViewColumn('lis-przacq', 'Prezzo acquisto', $this->dataset);
$column->SetOrderable(true);
$column = new NumberFormatValueViewColumnDecorator($column, 2, '.', ',');
$grid->AddSingleRecordViewColumn($column);
//
// View column for lis-moltipl field
//
$column = new TextViewColumn('lis-moltipl', 'Moltiplicatore', $this->dataset);
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for lis-oneriacc field
//
$column = new TextViewColumn('lis-oneriacc', 'Oneri e accessori', $this->dataset);
$column->SetOrderable(true);
$column = new NumberFormatValueViewColumnDecorator($column, 2, '.', ',');
$grid->AddSingleRecordViewColumn($column);
//
// View column for lis-scarto field
//
$column = new TextViewColumn('lis-scarto', 'Scarto', $this->dataset);
$column->SetOrderable(true);
$column = new NumberFormatValueViewColumnDecorator($column, 2, '.', ',');
$grid->AddSingleRecordViewColumn($column);
//
// View column for lis-dataini field
//
$column = new DateTimeViewColumn('lis-dataini', 'Data inizio decorrenza', $this->dataset);
$column->SetDateTimeFormat('d-m-Y');
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
//
// View column for lis-datafin field
//
$column = new DateTimeViewColumn('lis-datafin', 'Data fine decorrenza', $this->dataset);
$column->SetDateTimeFormat('d-m-Y');
$column->SetOrderable(true);
$grid->AddSingleRecordViewColumn($column);
}