HI I was updating my Definition scripts for easy module installation during development and noticed that I needed to add a few new fields.
Looking at the Stored Procedure to add a Module Control I noticed that the SupportsPartialRendering field is not updated.
Colin
-----------------------------------------------------------------------------------------
ALTER PROCEDURE dbo.AddModuleControl
@ModuleDefID int,
@ControlKey nvarchar(50),
@ControlTitle nvarchar(50),
@ControlSrc nvarchar(256),
@IconFile nvarchar(100),
@ControlType int,
@ViewOrder int,
@HelpUrl nvarchar(200),
@SupportsPartialRendering bit
AS
INSERT INTO ModuleControls (
ModuleDefID,
ControlKey,
ControlTitle,
ControlSrc,
IconFile,
ControlType,
ViewOrder,
HelpUrl
)
VALUES (
@ModuleDefID,
@ControlKey,
@ControlTitle,
@ControlSrc,
@IconFile,
@ControlType,
@ViewOrder,
@HelpUrl
)
SELECT SCOPE_IDENTITY()