Basic Webtoolz overview


General overview of the iPart


Controls


 Add controls to build your form or content
Controls are grouped together into categories to allow easier searching; information about each individual control can be found by search in the Knowledge Base under the appropriate category. 



Alternatively, start typing in the filter to quick find the correct control


Click on the control to select, the path at the top will populate, then click to add the control to your form

ReCaptcha

To enable ReCaptcha authentication on your form, tick the box.


The error message can be reconfigured in the HTML tab


NB: The ReCaptcha control must be added to the form as well
The webconfig file must also be updated before use.  See article on Recaptcha for details 

Stored Procedure Layouts


After adding the controls to your form, the Stored Procedure Layout helps your write, then manage your stored procedure directly from Webtoolz.

Generate Layout

Generates the basic layout for your stored procedure, taking the parameters from your form:

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:  WebToolz by ZENTSO (Zengagers Ltd.)
-- Create date: 06/07/2018 11:20:04
-- Description: http://www.zentso.com
-- =============================================
CREATE PROCEDURE Zen_CommunicationTemplate
--CommunicationsTemplate: Communication Template
/*
If nothing found or error parameter is empty else
<communicationstemplate>
<sender></sender><to></to>
<bcc></bcc>
<subject></subject>
<templatetext></templatetext>
</communicationstemplate>
*/
@communicationTemplate nvarchar(max) = '',
--SendEmail: Send an email
@Sender varchar(max) = '' out,
@To  varchar(max) = '' out,
@CC  varchar(max) = '' out,
@BCC  varchar(max) = '' out,
@Subject  varchar(max) = '' out,
@Message  varchar(max) = '' out,
--TextBox: Your Name
@name nvarchar(max) = '',
--TextBox: Your Email Address
@email nvarchar(max) = '',
--ReturnMessage: results message
@ReturnMessage nvarchar(max) = '' out
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
-- Insert statements for procedure here

END
GO

Load Stored Procedure

Once created, the stored procedure can be called directly from Webtoolz, and altered.  



Once the script has been changed, click on the  button to execute the script.  A message, either an error, or a success message will display.
It is not necessary to save an publish the Webtoolz iPart for the revised script to be effective.

 CSS



CSS can be defined directly in Webtoolz for use on the form


Then added directly to the control on the form

Zentso Apps

Coming soon



LAST UPDATED: 3098