Skip to content
This repository has been archived by the owner on Feb 12, 2018. It is now read-only.

Commit

Permalink
New CheckboxList control
Browse files Browse the repository at this point in the history
Register the checkboxcontrol editor datatype in lists
  • Loading branch information
vmasanas committed Feb 1, 2015
1 parent f359425 commit 5764c1c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Providers/DataProviders/SqlDataProvider/01.02.03.SqlDataProvider
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

if not exists (select 1 from {databaseOwner}[{objectQualifier}Lists] where ListName='DataType' and Value='CheckboxList')
begin
INSERT INTO {databaseOwner}[{objectQualifier}Lists] ([ListName],[Value],[Text],
[ParentID],[Level],[SortOrder],[DefinitionID],[PortalID],[SystemList])
VALUES('DataType','CheckboxList','Connect.Libraries.UserManagement.CheckboxListEditControl, Connect.Libraries.UserManagement',
0,0,0,-1,-1,1)
end
GO

0 comments on commit 5764c1c

Please sign in to comment.