META-INF.html.tld Maven / Gradle / Ivy
Tagria html library
Tagria html library
1.0
html
http://tagrialib.jslsolucoes.com/tags/html
Renders a syntax highlighter
Misc
syntaxHighlight
com.jslsolucoes.tagria.lib.tag.html.SyntaxHighLightTag
scriptless
Indicates the language to be parsed. Options : text/plsql
language
true
true
java.lang.String
Indicates if component is required fill
required
true
java.lang.Boolean
Indicates the name of the highlighter
name
true
true
java.lang.String
Indicates the if highlighter is read only. Default : false. Options : true,false
readOnly
true
java.lang.String
<html:syntaxHighlight name="input1" language="sql">
select 1 from dual;
</html:syntaxHighlight>
Renders a locale switcher to change current language
Misc
localeSwitch
com.jslsolucoes.tagria.lib.tag.html.LocaleSwitchTag
scriptless
<html:localeSwitch >
</html:localeSwitch>
Renders a source block of a particular language without executing it
Misc
code
com.jslsolucoes.tagria.lib.tag.html.CodeTag
scriptless
<html:code>
private class Java {
private String id;
private String name;
}
</html:code>
Renders a bar vertical or horizontal chart
Chart
barChart
com.jslsolucoes.tagria.lib.tag.html.BarChartTag
scriptless
Indicates the width of chart if responsive set to false. Default : 400
width
true
java.lang.Integer
Indicates the height of chart if responsive set to false. Default : 400
height
true
java.lang.Integer
Indicates the dataset to be rendered
dataset
true
true
com.jslsolucoes.tagria.lib.chart.BarChartData
Indicates if chart is responsive. Default : true
responsive
true
java.lang.Boolean
Indicates if chart is horizontal way. Default : false
horizontal
true
java.lang.Boolean
Indicates the title of chart
label
true
java.lang.String
It indicates whether the component should be rendered. Default : true
rendered
true
java.lang.Boolean
<html:barChart dataset="${ barDataSet }">
</html:barChart>
Renders a pie chart
Chart
pieChart
com.jslsolucoes.tagria.lib.tag.html.PieChartTag
scriptless
Indicates the width of chart if responsive is set to false. Default : 400
width
true
java.lang.Integer
Indicates the height of chart if responsive is set to false. Default : 400
height
true
java.lang.Integer
Indicates the dataset to be rendered
dataset
true
true
com.jslsolucoes.tagria.lib.chart.PieChartData
Indicates if chart is responsive size. Default : true
responsive
true
java.lang.Boolean
Indicates the title of chart
label
true
java.lang.String
It indicates whether the component should be rendered. Default : true
rendered
true
java.lang.Boolean
<html:pieChart dataset="${ pieDataSet }">
</html:pieChart>
Renders a css block
Css
cssCode
com.jslsolucoes.tagria.lib.tag.html.CssCodeTag
scriptless
<html:cssCode>
.red {
border :1px solid red;
}
</html:cssCode>
<html:div cssClass="red">
Conteudo
</html:div>
Renders a table
Table
table
com.jslsolucoes.tagria.lib.tag.html.TableTag
scriptless
<html:table>
<html:tableLine>
<html:tableColumn>Coluna 1</html:tableColumn>
</html:tableLine>
<html:tableLine>
<html:tableColumn>Valor 1</html:tableColumn>
</html:tableLine>
</html:table>
Renders a line of a table
Table
tableLine
com.jslsolucoes.tagria.lib.tag.html.TableLineTag
scriptless
It indicates whether the component should be rendered. Default : true
rendered
true
java.lang.Boolean
<html:table>
<html:tableLine>
<html:tableColumn>Coluna 1</html:tableColumn>
</html:tableLine>
<html:tableLine>
<html:tableColumn>Valor 1</html:tableColumn>
</html:tableLine>
</html:table>
Renders a table column
Table
tableColumn
com.jslsolucoes.tagria.lib.tag.html.TableColumnTag
scriptless
It indicates whether the column should be rendered with a highlight
header
true
java.lang.Boolean
It indicates a format in which the value must be converted. Options: date, timestamp, hour, currency, zip code, cnpj, tel, cpf
format
true
java.lang.String
Indicates the number of columns that this column should fill
colspan
true
java.lang.Integer
<html:table>
<html:tableLine>
<html:tableColumn header="true">Coluna 1</html:tableColumn>
<html:tableColumn header="true">Coluna 2</html:tableColumn>
</html:tableLine>
<html:tableLine>
<html:tableColumn>Valor 1</html:tableColumn>
<html:tableColumn>Valor 2</html:tableColumn>
</html:tableLine>
<html:tableLine>
<html:tableColumn colspan="2">Valor 3</html:tableColumn>
</html:tableLine>
</html:table>
Renders a triggered event for a given component
Javascript
jsEvent
com.jslsolucoes.tagria.lib.tag.html.JsEventTag
scriptless
Indicates the component name to be achieved
attachTo
true
true
java.lang.String
Indicates the javascript event to be fired
event
true
true
java.lang.String
It indicates whether the component should be rendered. Default : true
rendered
true
java.lang.Boolean
<html:input name="input1" placeholder="Entre e saia do campo" />
<html:jsEvent attachTo="input1" event="blur">
alert('blur');
</html:jsEvent>
Renders a modal confirmation
Misc
confirm
com.jslsolucoes.tagria.lib.tag.html.ConfirmTag
scriptless
It indicates the label of the title modal
label
true
java.lang.String
Indicates the URL to confirm the operation
url
true
java.lang.String
Indicates the component target. Default: _self. Options: _blank, _newtab, nomedoiframe
target
true
java.lang.String
Indicates the component that triggers the modal screen
attachTo
true
java.lang.String
<html:button id="botao" label="Confirmar algo"/>
<html:confirm url="#" label="Titulo do modal" attachTo="botao">
</html:confirm>
Renders a modal block
Misc
modal
com.jslsolucoes.tagria.lib.tag.html.ModalTag
scriptless
Indicates the modal id for direct manipulation of events
id
true
java.lang.String
It indicates the label of the title modal
label
true
true
java.lang.String
Indicates the component that triggers the modal screen
attachTo
true
java.lang.String
Indicates if modal can be closeable. Default : true. Options : true,false
closeable
true
java.lang.Boolean
Indicates if component is opened on load. Default : false. Options : true,false
open
true
java.lang.Boolean
It indicates whether the component should be rendered
rendered
true
java.lang.Boolean
<html:button id="botao" label="Abrir modal"/>
<html:modal label="Titulo do modal" attachTo="botao">
Outros componentes
<html:toolbar>
Componentes
</html:toolbar>
</html:modal>
Renders a picker of schedule for a component
Picker
timePicker
com.jslsolucoes.tagria.lib.tag.html.TimePickerTag
scriptless
Indicates the component that triggers the component
attachTo
true
true
java.lang.String
<html:input name="input1" placeholder="Horario" />
<html:timePicker attachTo="input1"/>
Renders a dateTimePicker for a component
Picker
dateTimePicker
com.jslsolucoes.tagria.lib.tag.html.DateTimePickerTag
scriptless
Indicates the component that triggers the component
attachTo
true
true
java.lang.String
<html:input name="input1" placeholder="Data e horario" />
<html:dateTimePicker attachTo="input1"/>
Renders a datePicker for a component
Picker
datePicker
com.jslsolucoes.tagria.lib.tag.html.DatePickerTag
scriptless
Indicates the component that triggers the component
attachTo
true
true
java.lang.String
Indicates the minimum day for date choice
min
true
java.lang.Integer
<html:input name="input1" placeholder="Data" />
<html:datePicker attachTo="input1" min="0"/>
Renders an event to select a date
Picker
datePickerOnSelect
com.jslsolucoes.tagria.lib.tag.html.DatePickerOnSelectTag
scriptless
<html:input name="input1" placeholder="Data" />
<html:datePicker attachTo="input1" min="0">
<html:datePickerOnSelect>
/* Nesse ponto fica disponivel as variaveis dateText,inst */
alert(dateText);
</html:datePickerOnSelect>
</html:datePicker>
Renders an icon
Image
icon
com.jslsolucoes.tagria.lib.tag.html.IconTag
scriptless
Indicates the icon to be rendered. available list http://getbootstrap.com/components/#glyphicons
icon
true
java.lang.String
<html:icon icon="cog" />
Renders a view with all header. This view must be declared ONLY ONCE and main tag used throughout view
Misc
view
com.jslsolucoes.tagria.lib.tag.html.ViewTag
scriptless
Indicates the title of the current page
title
true
java.lang.String
<html:view>
Todos os componentes necessários
</html:view>
Renders a main container block with a standard margin
Layout
container
com.jslsolucoes.tagria.lib.tag.html.ContainerTag
scriptless
It indicates whether a container must be responsive to the screen 100%
fluid
true
java.lang.Boolean
<html:alert state="info">
Componente fora do container
</html:alert>
<html:container>
<html:alert state="info">
Componente dentro do container
</html:alert>
</html:container>
Renders a panel
Panel
panel
com.jslsolucoes.tagria.lib.tag.html.PanelTag
scriptless
Indicates the panel state. Default: primary. Options: success, danger, info, default, primary
state
true
java.lang.String
It indicates whether the component should be rendered. Default : true
rendered
true
java.lang.Boolean
<html:panel>
<html:panelHead label="Titulo"/>
<html:panelBody>
Outros componentes
</html:panelBody>
</html:panel>
Renders a title on the panel
Panel
panelHead
com.jslsolucoes.tagria.lib.tag.html.PanelHeadTag
scriptless
Indicates the title panel
label
true
java.lang.String
<html:panel>
<html:panelHead label="Titulo"/>
<html:panelBody>
Outros componentes
</html:panelBody>
</html:panel>
Renders the body panel
Panel
panelBody
com.jslsolucoes.tagria.lib.tag.html.PanelBodyTag
scriptless
<html:panel>
<html:panelHead label="Titulo"/>
<html:panelBody>
Outros componentes
</html:panelBody>
</html:panel>
Renders the footer panel
Panel
panelFooter
com.jslsolucoes.tagria.lib.tag.html.PanelFooterTag
scriptless
<html:panel>
<html:panelHead label="Titulo"/>
<html:panelBody>
Outros componentes
</html:panelBody>
<html:panelFooter>
Outros componentes
</html:panelFooter>
</html:panel>
Renders an alert box
Misc
alert
com.jslsolucoes.tagria.lib.tag.html.AlertTag
scriptless
Indicates the id for the component
id
true
java.lang.String
Indicates a label for the alert.
label
true
java.lang.String
It indicates whether the component can be closed. Default: false
dismissible
true
java.lang.Boolean
It indicates the state where the box should be rendered. Default: warning. Options: warning, success, danger, info
state
true
true
java.lang.String
It indicates whether the component should be rendered. Default : true
rendered
true
java.lang.Boolean
It indicates whether the component should be visible. Default : true
visible
true
java.lang.Boolean
<html:alert state="info">
Caixa de informação
</html:alert>
Renders a form
Form
form
com.jslsolucoes.tagria.lib.tag.html.FormTag
scriptless
Indicates the action of submission
action
true
java.lang.String
Indicates the target of submission. Default : _self. Options : _blank,_self,_parent,_top,iframe
target
true
java.lang.String
It indicates the method to be used. Default: post. Options: post, get
method
true
java.lang.String
Indicates the name of form
name
true
java.lang.String
It indicates a validation to be performed on the data form
validation
true
java.lang.String
Indicates the label of the form
label
true
java.lang.String
It indicates whether the component should be rendered
rendered
true
java.lang.Boolean
It indicates whether the form should have file support
multipart
true
java.lang.Boolean
<html:form action="#">
<html:formGroup label="Campo 1" required="true">
<html:input required="true" name="field1"/>
</html:formGroup>
<html:formGroup label="Campo 2">
<html:input name="field2"/>
</html:formGroup>
</html:form>
Renders a component grouping in the form
Form
formGroup
com.jslsolucoes.tagria.lib.tag.html.FormGroupTag
scriptless
Indicates the label of the group
label
true
java.lang.String
Indicates the id of the group
id
true
java.lang.String
It indicates the element to be oriented the label
forElement
true
java.lang.String
Indicates whether the completion of the internal component should be mandatory
required
true
java.lang.Boolean
It indicates whether the component should be rendered
rendered
true
java.lang.Boolean
It indicates whether the component should be visible
visible
true
java.lang.Boolean
<html:form action="#">
<html:formGroup forElement="field1" label="Campo 1" required="true">
<html:input required="true" name="field1"/>
</html:formGroup>
<html:formGroup label="Campo 2">
<html:input name="field2"/>
</html:formGroup>
</html:form>
Renders a line of columns of subdivision (divided into 12 sections combined with the col tag)
Form
row
com.jslsolucoes.tagria.lib.tag.html.RowTag
scriptless
<html:form action="#">
<html:formGroup forElement="field1" label="Campo 1" required="true">
<html:row>
<html:col size="6">
<html:input required="true" name="field1"/>
</html:col>
<html:col size="6">
<html:input name="field2"/>
</html:col>
</html:row>
</html:formGroup>
</html:form>
Renders a column within a row
Form
col
com.jslsolucoes.tagria.lib.tag.html.ColTag
scriptless
Indicates the number of columns to fill. Options: 1 to 12
size
true
true
java.lang.Integer
<html:form action="#">
<html:formGroup forElement="field1" label="Campo 1" required="true">
<html:row>
<html:col size="3">
<html:input required="true" name="field1"/>
</html:col>
<html:col size="9">
<html:input name="field2"/>
</html:col>
</html:row>
</html:formGroup>
</html:form>
Renders an input
Input
input
com.jslsolucoes.tagria.lib.tag.html.InputTag
scriptless
It indicates a CSS class to the component
cssClass
true
java.lang.String
Indicates a title for the component
title
true
java.lang.String
It indicates a format in which the value must be converted. Options: date, timestamp, hour, currency, zip code, cnpj, tel, cpf
format
true
java.lang.String
It indicates the type of input. Default: text. Options: button, checkbox, color, date, datetime, datetime-local, email, file, hidden, image, month, number, password, radio, range, reset, search, submit, tel, text, time, url, week
type
true
java.lang.String
Indicates the component's id
id
true
java.lang.String
Indicates the component name
name
true
true
java.lang.String
Indicates the component fill mark
placeholder
true
java.lang.String
Indicates the value of the component
value
true
java.lang.String
It indicates whether the component should win the cursor focus
focus
true
java.lang.Boolean
It indicates whether the component is required within a form
required
true
java.lang.Boolean
It indicates the Padra to be followed in a particular field
pattern
true
java.lang.String
It indicates whether the component should be disabled. Default: false
disabled
true
java.lang.Boolean
Indicates the maximum number of characters to be filled
maxLength
true
java.lang.Integer
Indicates the maximun number accepted
max
true
java.lang.Integer
Indicates the minimum number accepted
min
true
java.lang.Integer
Indicates if (radio, checkbox) if the component should be marked
checked
true
java.lang.String
Indicates whether the component supports multiple inputs
multiple
true
java.lang.Boolean
Indicates which extensions supported in the case (file)
accept
true
java.lang.String
<html:input name="field1"/>
Renders a div
Layout
div
com.jslsolucoes.tagria.lib.tag.html.DivTag
scriptless
Indicates the component's id
id
true
java.lang.String
It indicates a CSS class to the component
cssClass
true
java.lang.String
It indicates whether the component should be rendered. Default : true.
rendered
true
java.lang.Boolean
<html:div>
Conteudo
</html:div>
Renders importing a js file or css
Misc
import
com.jslsolucoes.tagria.lib.tag.html.ImportTag
scriptless
Indicates the type of file to be imported. Options: js, css
type
true
true
java.lang.String
Indicates the URL where the file
url
true
true
java.lang.String
<html:import type="css" url="/css/example.css"/>
<html:import type="js" url="/js/example.js"/>
Renders an image
Image
img
com.jslsolucoes.tagria.lib.tag.html.ImageTag
scriptless
It indicates the label if the component can not be loaded
alt
true
true
java.lang.String
It indicates whether the component must follow a set on the properties cdn
cdn
true
java.lang.Boolean
It indicates whether the component should be responsive
responsive
true
java.lang.Boolean
Indicates the point component
height
true
java.lang.Integer
Indicates the image url
url
true
true
java.lang.String
Indicates the image width
width
true
java.lang.Integer
It indicates a format for the component. Options: rounded, circle, thumbnail
shape
true
java.lang.String
It indicates a CSS class to the component
cssClass
true
java.lang.String
<html:img url="/image/person.png" alt="logo" responsive="true"/>
Renders a link
Html
link
com.jslsolucoes.tagria.lib.tag.html.LinkTag
scriptless
Indicates the url component
url
true
java.lang.String
Indicates the label component
label
true
java.lang.String
It indicates whether the component should be rendered
rendered
true
java.lang.Boolean
Indicates the component target. Default: _self. Options: _blank, _newtab, nomedoiframe
target
true
java.lang.String
<html:link label="Meu link" url="#"/>
Renders a h1
Html
h1
com.jslsolucoes.tagria.lib.tag.html.H1Tag
scriptless
<html:h1> Cabecalho </html:h1>
Renders a small
Html
small
com.jslsolucoes.tagria.lib.tag.html.SmallTag
scriptless
<html:small> texto pequeno </html:small>
Renders a span
Html
span
com.jslsolucoes.tagria.lib.tag.html.SpanTag
scriptless
Indicates the components id
id
true
java.lang.String
Indicates the component name
name
true
java.lang.String
<html:span> text </html:span>
Renders a tooltip
Misc
tooltip
com.jslsolucoes.tagria.lib.tag.html.TooltipTag
scriptless
Indicates the component name to be achieved
attachTo
true
true
java.lang.String
It indicates whether the component should be rendered
rendered
true
java.lang.Boolean
<html:input name="field1"/>
<html:tooltip attachTo="field1">
Meu tooltip para o campo field 1
</html:tooltip>
Renders an iframe
Misc
iframe
com.jslsolucoes.tagria.lib.tag.html.IframeTag
scriptless
Indicates the name of the iframe
name
true
true
java.lang.String
Indicates the id of the iframe
id
true
java.lang.String
Indicates the URL where the iframe
url
true
true
java.lang.String
<html:iframe url="/app/welcome" name="conteudo"/>
Renders a dropdown menu with activation in icon
Menu
menuImage
com.jslsolucoes.tagria.lib.tag.html.MenuImageTag
scriptless
Indicates the path of the image to be used
image
true
true
java.lang.String
Indicates the CSS class to the menu
cssClass
true
java.lang.String
Indicates the height of image
height
true
true
java.lang.Integer
Indicates the image width
width
true
true
java.lang.Integer
It indicates whether the component should be rendered
rendered
true
java.lang.Boolean
<html:menuImage cssClass="pull-right" image="/image/person.png" width="35" height="35" >
<html:menuItem label="Item 1" url="#"/>
<html:menuSeparator/>
<html:menuItem label="Item 2" target="_blank" url="#"/>
<html:menuItem icon="trash" label="Item 3" url="#"/>
</html:menuImage>
Renders a menu item
Menu
menuItem
com.jslsolucoes.tagria.lib.tag.html.MenuItemTag
scriptless
Indicates the icon to be used in the menu icon. available list http://getbootstrap.com/components/#glyphicons
icon
true
java.lang.String
Indicates the URL to be used
url
true
java.lang.String
It indicates the label to be used
label
true
java.lang.String
Indicates the target browser. Default: _self. Options: _self, _parent, _blank, namedeumiframe
target
true
java.lang.String
It indicates whether the component should be rendered
rendered
true
java.lang.Boolean
<html:nav>
<html:menuButton icon="cog" align="right">
<html:menuItem label="Item 1" url="#"/>
<html:menuSeparator/>
<html:menuItem label="Item 2" target="_blank" url="#"/>
<html:menuItem icon="trash" label="Item 3" url="#"/>
</html:menuButton>
</html:nav>
Renders a text menu
Menu
menuText
com.jslsolucoes.tagria.lib.tag.html.MenuTextTag
scriptless
Indicates the alignment of the text on the menu. Default: left. Options: left, right
align
true
java.lang.String
Indicates the id of p element
id
true
java.lang.String
<html:nav>
<html:menuText align="right">
My text menu
</html:menuText>
</html:nav>
Renders a dropdown menu with activation button on
Menu
menuButton
com.jslsolucoes.tagria.lib.tag.html.MenuButtonTag
scriptless
Indicates the icon to use the button. available list http://getbootstrap.com/components/#glyphicons
icon
true
true
java.lang.String
Indicates a CSS class to be used
cssClass
true
java.lang.String
Indicates the alignment of the button on the menu. Default: left. Options: left, right
align
true
java.lang.String
Indicates the label button
label
true
java.lang.String
Indicates the title button
title
true
java.lang.String
It indicates whether the component should be rendered
rendered
true
java.lang.Boolean
<html:nav>
<html:menuButton icon="cog" align="right">
<html:menuItem label="Item 1" url="#"/>
<html:menuSeparator/>
<html:menuItem label="Item 2" url="#"/>
<html:menuItem label="Item 3" url="#"/>
</html:menuButton>
</html:nav>
Renders a horizontal menu
Menu
nav
com.jslsolucoes.tagria.lib.tag.html.NavTag
scriptless
<html:nav>
<html:menuButton icon="cog" align="right">
<html:menuItem label="Item 1" url="#"/>
<html:menuSeparator/>
<html:menuItem label="Item 2" url="#"/>
<html:menuItem label="Item 3" url="#"/>
</html:menuButton>
</html:nav>
Renders a logo in the navigation menu in text format
Menu
brand
com.jslsolucoes.tagria.lib.tag.html.BrandTag
scriptless
Indicates the URL to be called by clicking on the logo
url
true
true
java.lang.String
It indicates the label to be used in brand logo
label
true
java.lang.String
<html:nav>
<html:brand label="Meu titulo" url="#"/>
</html:nav>
Renders a grid
Grid
grid
com.jslsolucoes.tagria.lib.tag.html.GridTag
scriptless
It indicates the collection to be iterated by the component
data
true
true
java.util.Collection
It indicates the name of the variable java to be made available the object of iteration
var
true
true
java.lang.String
It indicates the name of the variable to be available to current iteration
varStatus
true
java.lang.String
Indicates the label component
label
true
java.lang.String
Indicates the total number of records in component
totalResults
true
java.lang.Integer
It indicates the default number of results per page. Default: 60. Options: 20,40,60,80,100
resultsPerPage
true
java.lang.Integer
It indicates whether the grid is simple without standard widgets (pagination, exportacao, search, etc.). Default: false
simple
true
java.lang.Boolean
It indicates whether the component should be search feature. Default: false
search
true
java.lang.Boolean
It indicates whether the component should be paginated. Default: true
paginate
true
java.lang.Boolean
It indicates whether the component should be export feature. Default: true
export
true
java.lang.Boolean
Indicates the url component a ser utilizada caso haja paginação
url
true
java.lang.String
It indicates whether the component should be rendered
rendered
true
java.lang.Boolean
Indicates the component title when there are no lines available
noRowText
true
java.lang.String
Indicates whether the support is activated mark all
checkAll
true
java.lang.Boolean
<html:grid label="Pessoas" url="/component/grid" data="${ pessoas }" var="pessoa" noRowText="Não há pessoas disponíveis">
<html:gridColumn label="Identificação" exportable="true">
${ pessoa.id }
</html:gridColumn>
<html:gridColumn label="Nome" exportable="true">
${ pessoa.nome }
</html:gridColumn>
</html:grid>
Renders a grid column
Grid
gridColumn
com.jslsolucoes.tagria.lib.tag.html.GridColumnTag
scriptless
Indicates the label component
label
true
java.util.Collection
Indicates whether the component value is of type boolean
booleanType
true
java.lang.Boolean
It indicates whether the column should be collapsable
collapsable
true
java.lang.Boolean
It indicates whether the column should be exported
exportable
true
java.lang.Boolean
Indicates the alignment of the content. Default: left. Options: left, center, right
align
true
java.lang.String
hideOnViewport
true
java.lang.String
It indicates a format in which the content should be converted. Options: date, timestamp, hour, currency, zip code, cnpj, tel, cpf
format
true
java.lang.String
It indicates whether the component should be rendered
rendered
true
java.lang.Boolean
Indicates the component state. Default: default. Options: danger, info, success, default
state
true
java.lang.String
<html:grid label="Pessoas" url="/component/grid" data="${ pessoas }" var="pessoa" noRowText="Não há pessoas disponíveis">
<html:gridColumn label="Identificação" exportable="true">
${ pessoa.id }
</html:gridColumn>
<html:gridColumn label="Nome" exportable="true">
${ pessoa.nome }
</html:gridColumn>
</html:grid>
Renders a button
Button
button
com.jslsolucoes.tagria.lib.tag.html.ButtonTag
scriptless
Indicates the status of the button. Default: default. Options: default, primary, danger, info, success
state
true
java.lang.String
Indicates the type of button. Default: button. Options: button, submit
type
true
java.lang.String
Indicates the component linked to dismiss button. Options: Modal
dismiss
true
java.lang.String
It indicates a CSS class to the component
cssClass
true
java.lang.String
Indicates the url to be performed by the component
url
true
java.lang.String
Indicates the icon to be used by the component. available list http://getbootstrap.com/components/#glyphicons
icon
true
java.lang.String
Indicates the component's id
id
true
java.lang.String
Indicates the label component
label
true
java.lang.String
Indicates the component target. Default: _self. Options: _blank, _newtab, _parent, nomedoiframe
target
true
java.lang.String
Indicates the title button
title
true
java.lang.String
It indicates whether the component should be rendered
rendered
true
java.lang.Boolean
It indicates whether the component should be disabled. Default: false.
disabled
true
java.lang.Boolean
<html:button url="#" icon="cog" label="botao" state="info"/>
Renders a toolbar for the component (Available for grid, form, card and modal)
Misc
toolbar
com.jslsolucoes.tagria.lib.tag.html.ToolbarTag
scriptless
It indicates whether the component should be rendered
rendered
true
java.lang.Boolean
<html:form action="#">
<html:formGroup label="Campo 1" required="true">
<html:input required="true" name="field1"/>
</html:formGroup>
<html:formGroup label="Campo 2">
<html:input name="field2"/>
</html:formGroup>
<html:toolbar>
<html:button state="primary" type="submit" label="Alterando label padrao"/>
</html:toolbar>
</html:form>
Renders a menu tab
Menu
menuSeparator
com.jslsolucoes.tagria.lib.tag.html.MenuSeparatorTag
scriptless
<html:nav>
<html:menuButton icon="cog" align="right">
<html:menuItem label="Item 1" url="#"/>
<html:menuSeparator/>
<html:menuItem label="Item 2" url="#"/>
<html:menuItem label="Item 3" url="#"/>
</html:menuButton>
</html:nav>
Renders a javascript block
Javascript
jsCode
com.jslsolucoes.tagria.lib.tag.html.JsCodeTag
scriptless
It indicates whether the component should be rendered. Default : true.
rendered
true
java.lang.Boolean
<html:jsCode>
test();
function test(){
alert('oi');
}
</html:jsCode>
Renders a list
Groupments
listGroup
com.jslsolucoes.tagria.lib.tag.html.ListGroupTag
scriptless
It indicates whether the component should be rendered. Default : true
rendered
true
java.lang.Boolean
<html:listGroup>
<html:listGroupItem>
Item 1
</html:listGroupItem>
<html:listGroupItem>
Item 2
</html:listGroupItem>
</html:listGroup>
Renders a list item
Groupments
listGroupItem
com.jslsolucoes.tagria.lib.tag.html.ListGroupItemTag
scriptless
It indicates whether the component should be rendered. Default : true
rendered
true
java.lang.Boolean
<html:listGroup>
<html:listGroupItem>
Item 1
</html:listGroupItem>
<html:listGroupItem>
Item 2
</html:listGroupItem>
</html:listGroup>
Renders an area of \u200b\u200btext
Input
textarea
com.jslsolucoes.tagria.lib.tag.html.TextareaTag
scriptless
Indicates the component name
name
true
true
java.lang.String
Indicates MARKING standard component
placeholder
true
java.lang.String
It indicates the amount of the component
value
true
java.lang.String
It indicates whether the component is required in the form
required
true
java.lang.Boolean
Indicates the number of component lines
rows
true
java.lang.Integer
It indicates a CSS class to the component
cssClass
true
java.lang.String
<html:textarea name="textarea1" rows="3"/>
Renders a select browser
Input
select
com.jslsolucoes.tagria.lib.tag.html.SelectTag
scriptless
It indicates a CSS class to the component
cssClass
true
java.lang.String
Indicates the collection to be iterated in component
data
true
java.util.Collection
Indicates the value selected in the component
value
true
java.lang.String
Indicates the component name
name
true
true
java.lang.String
It indicates the name of the variable java to be made available the object of iteration
var
true
java.lang.String
Indicates whether the component form is mandatory in form
required
true
java.lang.Boolean
Renders an option of a select
Input
option
com.jslsolucoes.tagria.lib.tag.html.OptionTag
scriptless
Indicates the value of the component
value
true
true
java.lang.String
Renders a table detalhe
Detail table
detailTable
com.jslsolucoes.tagria.lib.tag.html.DetailTableTag
scriptless
Indicates the label component
label
true
java.lang.String
Indicates the collection to be iterated in component
data
true
java.util.Collection
It indicates the name of the variable java to be made available the object of iteration
var
true
java.lang.String
Indicates the minimum number of lines to be filled
atLeast
true
java.lang.Integer
It indicates whether the component should start without lines
empty
true
java.lang.Boolean
Indicates a javascript function to be performed after inserting a row
afterInsert
true
java.lang.String
<html:form action="#" label="Formulario com detalhes">
<html:formGroup>
<html:detailTable atLeast="1">
<html:detailTableColumn label="Nome" required="true">
<html:input name="nomes[]" required="true"/>
</html:detailTableColumn>
<html:detailTableColumn label="Idade" required="true">
<html:input name="idades[]" type="number" required="true"/>
</html:detailTableColumn>
</html:detailTable>
</html:formGroup>
</html:form>
Renders a column in the detail table
Detail table
detailTableColumn
com.jslsolucoes.tagria.lib.tag.html.DetailTableColumnTag
scriptless
Indicates the label component
label
true
java.lang.String
It indicates whether the component has its required on a form
required
true
java.lang.Boolean
<html:form action="#" label="Formulario com detalhes">
<html:formGroup>
<html:detailTable atLeast="1">
<html:detailTableColumn label="Nome" required="true">
<html:input name="nomes[]" required="true"/>
</html:detailTableColumn>
<html:detailTableColumn label="Idade" required="true">
<html:input name="idades[]" type="number" required="true"/>
</html:detailTableColumn>
</html:detailTable>
</html:formGroup>
</html:form>
Renders an auto complete
Input
autoComplete
com.jslsolucoes.tagria.lib.tag.html.AutoCompleteTag
scriptless
Indicates the url to be performed by the component
url
true
true
java.lang.String
Indicates the auto name completion
name
true
true
java.lang.String
Indicates the field to be filled
dataValue
true
true
java.lang.String
Indicates text to be completed when selecting a value
dataText
true
true
java.lang.String
Indicates the value of the component
value
true
java.lang.String
Indicates the component of the text
text
true
java.lang.String
Indicates the minimum number of letters to trigger the auto complete
minLength
true
java.lang.Integer
Indicates MARKING standard component
placeholder
true
java.lang.String
It indicates whether the component has its mandatory in form
required
true
java.lang.Boolean
<html:autoComplete name="autocomplete" url="/app/autoComplete" dataValue="id" dataText="nome">
</html:autoComplete>
Renders an auto complete select trigger
Input
autoCompleteOnSelect
com.jslsolucoes.tagria.lib.tag.html.AutoCompleteOnSelectTag
scriptless
<html:autoComplete name="autocomplete" url="/app/autoComplete" dataValue="id" dataText="nome">
<html:autoCompleteOnSelect>
// select: function( item ) { your block is render here }
</html:autoCompleteOnSelect>
</html:autoComplete>
Renders a calendar
Calendar
calendar
com.jslsolucoes.tagria.lib.tag.html.CalendarTag
scriptless
Indicates the url responsible for building the json
url
true
true
java.lang.String
<html:calendar url="/app/calendar">
</html:calendar>
Renders a component with collapsable effect
Misc
collapsable
com.jslsolucoes.tagria.lib.tag.html.CollapsableTag
scriptless
It indicates the label to be used in collapsable
label
true
true
java.lang.String
It indicates if component must be opened. Default : false. Options : true,false
opened
true
java.lang.Boolean
Indicates the status of the group. Default: primary. Options: default, primary, danger, info, success
state
true
java.lang.String
<html:collapsable label="Label 1">
Outros componentes
</html:collapsable>
Renders a mask in currency format for a particular component
Mask
currencyMask
com.jslsolucoes.tagria.lib.tag.html.CurrencyMaskTag
scriptless
Indicates the component name a ser incorporado a mascara no formato monetário
attachTo
true
true
java.lang.String
<html:input name="teste" value="0" format="currency"/>
<html:currencyMask attachTo="teste"/>
Renders a mask on a particular component
Mask
mask
com.jslsolucoes.tagria.lib.tag.html.MaskTag
scriptless
Indicates the mask to be used
mask
true
true
java.lang.String
Indicates the component name a ser incorporado a mascara
attachTo
true
true
java.lang.String
It indicates whether the fill should occur behind forward
reverse
true
java.lang.Boolean
<html:input name="teste"/>
<html:mask mask="99/99/9999" attachTo="teste"/>
Renders a block in the mask by pressing a button
Mask
maskOnKeyPress
com.jslsolucoes.tagria.lib.tag.html.MaskTagOnKeyPress
scriptless
<html:input name="teste"/>
<html:mask mask="(00) 0000-00000" attachTo="teste">
<html:maskOnKeyPress>
var masks = ['(00) 0000-00000', '(00) 00000-0000'];
mask = (value.length > 14) ? masks[1] : masks[0];
$('#'+$(field[0]).attr('id')).mask(mask,options);
</html:maskOnKeyPress>
</html:mask>
Renders a panel de abas
Tab
tabPanel
com.jslsolucoes.tagria.lib.tag.html.TabPanelTag
scriptless
<html:tabPanel>
<html:tab label="Aba 1" active="true">
Conteúdo aba 1
</html:tab>
<html:tab label="Aba 2" url="/app/welcome"/>
</html:tabPanel>
Renders a flap within a panel flaps
Tab
tab
com.jslsolucoes.tagria.lib.tag.html.TabTag
scriptless
Indicates the label of the tab
label
true
true
java.lang.String
Indicates the url to be incorporated into the tab. If not indicated it renders content in the component body.
url
true
java.lang.String
It indicates whether the tab should be rendered
rendered
true
java.lang.Boolean
It indicates whether the tab should be initiated selected
active
true
java.lang.Boolean
It indicates whether the tab should be recharged to clicar.Default: true.
reloadOnSelect
true
java.lang.Boolean
<html:tabPanel>
<html:tab label="Aba 1" active="true">
Conteúdo aba 1
</html:tab>
<html:tab label="Aba 2" url="/app/welcome"/>
</html:tabPanel>
Renders a component tree
Treeview
treeView
com.jslsolucoes.tagria.lib.tag.html.TreeViewTag
scriptless
Indicates the URL that the component should perform
url
true
true
java.lang.String
Indicates the component name
name
true
java.lang.String
Indicates the collection to be iterated in component
data
true
java.util.Collection
It indicates the name of the variable java to be made available the object of iteration
var
true
java.lang.String
Indicates whether the filling of treeview should be mandatory on the form
required
true
java.lang.Boolean
Indicates whether the component allows multiple selection. Default: false.
multiple
true
java.lang.Boolean
<html:treeView url="/app/treeView">
</html:treeView>
Renders the selection of in a tree
Treeview
treeViewNodeSelect
com.jslsolucoes.tagria.lib.tag.html.TreeViewNodeSelectTag
scriptless
Indicates the id of the selected
id
true
true
java.lang.String
Indicates the text of the selected
text
true
true
java.lang.String
<html:treeView url="/app/treeView" name="treeview" data="${ pessoas }" var="pessoa">
<html:treeViewNodeSelect id="${ pessoa.id }" text="${ pessoa.nome }"/>
</html:treeView>
Renders a block with top and bottom spacing
Misc
block
com.jslsolucoes.tagria.lib.tag.html.BlockTag
scriptless
Indicates the alignment of internal components. Default: left. Options: left, center, right
align
true
java.lang.String
It indicates whether the component should be rendered . Default : true
rendered
true
java.lang.Boolean
<html:block>
Meu bloco de componentes
</html:block>
Renders a cluster of buttons
Button
buttonGroup
com.jslsolucoes.tagria.lib.tag.html.ButtonGroupTag
scriptless
Indicates whether the buttons should be spaced. default false
spaced
true
java.lang.Boolean
<html:buttonGroup>
<html:button label="Botao 1" state="primary" url="#"/>
<html:button label="Botao 3" state="danger" url="#"/>
</html:buttonGroup>
Renders a progress bar
Progress
progressBar
com.jslsolucoes.tagria.lib.tag.html.ProgressBarTag
scriptless
It indicates whether the bar should have a certain position. default false
determinate
true
java.lang.Boolean
It indicates the value that the bar should take a percentage. Default 0.Opções: 0 to 100
value
true
java.lang.Integer
<html:progressBar determinate="true" value="70"></html:progressBar>
<html:progressBar determinate="true" value="30"></html:progressBar>
<html:progressBar></html:progressBar>
Renders a progress bar circular
Progress
progressCircle
com.jslsolucoes.tagria.lib.tag.html.ProgressCircleTag
scriptless
Indicates the circular progress color. Default blue. Options: red, green, yellow, blue
color
true
java.lang.String
Indicates the circular progress size. Default big. Options: big, small, medium
size
true
java.lang.Integer
<html:progressCircle></html:progressCircle>
<html:progressCircle color="red" size="small"></html:progressCircle>
<html:progressCircle color="yellow" size="medium"></html:progressCircle>
Renders a card
Card
card
com.jslsolucoes.tagria.lib.tag.html.CardTag
scriptless
<html:card>
<html:cardBody>
Componentes
</html:cardBody>
<html:toolbar>
Componentes
</html:toolbar>
</html:card>
Renders a body in the card
Card
cardBody
com.jslsolucoes.tagria.lib.tag.html.CardBodyTag
scriptless
<html:card>
<html:cardBody>
Componentes
</html:cardBody>
<html:toolbar>
Componentes
</html:toolbar>
</html:card>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy