47 articles QW-FD – Form Designer Page 3 / 5

OGGETTO GRAFICO

Descrizione consente di inserire un grafico all’interno di un form.  E’ basato sugli oggetti jqxChart e jqxGauge della libreria jQWidgets dei quali mantiene le modalità di configurazione. Questo oggetto è utilizzabile solo sulla piattaforma web. Proprietà Specifiche Oltre alle proprietà comuni sono disponibili le seguenti proprietà: TipoGrafico consente di specificare il tipo di grafico: Chart o Gauge. Eventi specifici…

OGGETTO COMANDOVOCALE

Descrizione Permette di eseguire un evento alla ricezione di un comando vocale. Questo oggetto è utilizzabile solo sulla piattaforma web e con browser Chrome. Proprietà specifiche Nessuna Eventi specifici EventoComando: è l’evento che viene eseguito alla ricezione di un comando. Nella variabile Command è contenuto il testo di quanto pronunciato dall’utente. Per maggiori informazioni sugli eventi leggi…

OGGETTO TIMER

Descrizione Permette di eseguire un evento in un determinato momento, specificato come data e ora. Questo oggetto è utilizzabile solo sulle piattaforma web e mobile. Proprietà specifiche Nessuna Eventi specifici EventoTimer: è l’evento che viene eseguito all’orario specificato nella proprietà Time Per maggiori informazioni sugli eventi leggi qui. Proprietà utilizzabili da codice lato Server (VB.NET/C#) Enabled: se true…

OGGETTO PROCEDURA

Descrizione Permette di definire una procedura che potrà essere richiamata da altri eventi. Si tratta di un oggetto che non viene visualizzato sul form in fase di esecuzione, e il cui posizionamento sullo stesso in fase di progettazione è puramente simbolico. L’oggetto mette a disposizione un evento nel quale inserire il codice da eseguire, e…

DATAVIEW OBJECT

Description The Dataview object, available from release 2015.03, allows read-only view of the data retrieved from the database using a query. Specific properties In addition to common properties contains the following properties: BrowseQuery: It contains the query used to display the data. Such queries can contain parameters whose names, preceded by the character “:”, may correspond to…

LABEL OBJECT

Description Allows to place a label within the form. Specific properties see common properties. Specific events None For more information read here. Properties that can be used by code C/S Properties Text: assign the label to display on the button. Visible: True if the field is visible on the form, otherwise assign it with False. Web properties…

CHECKBOX OBJECT

Description It allows the insertion of a flag, or a box that appears checked or not, depending if the field associated (“boolean” value). Specific properties see common properties. Specific events ChangeEvent event activated when change the value of the field. Can be used to – assign other fields based on the value inserted into the field…

MULTILINE TEXTFIELD OBJECT

Description Used to enter a long text, having a field notes extensible. Specific properties In addition to common properties contains the following properties: WordWrap: if is True, indicates wether text could be wrapped. Specific events ChangeEvent event activated when change the value of the field. Can be used to – assign other fields based on the…

TEXTFIELD OBJECT

Description Allows the user to insert data freely. Specific properties For this type of object has many common properties, but it’s good to highlight among them the property Querylista. Specific events ChangeEvent event activated when change the value of the field. Can be used to – assign other fields based on the value inserted into…

BUTTON OBJECT

Description Allows you to place a button within the form. Specific properties In addition to common properties contains the following properties: Text: assign the label to display on the button. Icon: defines the button icon. Specific events ClickEvent When you press the button, starts to run the code inside of this event. For more information…