As within any Notes applications, a good Notes programmer tries to minimize the number of views in a database. Regardless of the database there will be views and some are hidden. However, hidden view are really not hidden and an experience Notes user can use the Goto Shift Control and all the hidden views can be listed and accessed which is really no security at all. We wanted to prevent users or any other unwanted individuals to open the document or even right click on the document to open the document properties box and look at the content of the field. We decided to research want we could do to prevent unwanted individuals to access the information. We tried hiding the columns, but you could still right click and get the document properties box. If you place continue=false in the queryopendocument in the view that would prevent users from double clicking to open the document but users could still right click and get the document properties. However, if you place continue=false in the queryopen of the view, the view itself can never be open and users can never see the document. You can use this method to determine who can have access to the view. This method seems to work well. If anybody have an comments on how secure this is let me know.
Creating Twitter Bootstrap Widgets - Part I - Anatomy of a Widget Creating Twitter Bootstrap Widgets - Part II - Let's Assemble Creating Twitter Bootstrap Widgets - Part IIIA - Using Dojo To Bring It Together This is two part of my five part series "Creating Twitter Bootstrap Widgets". As I mentioned in part one of this series, Twitter Bootstrap widgets are built from a collection standard HTML elements, styled, and programmed to function as a single unit. The goal of this series is to teach you how to create a Bootstrap widget that utilizes the Bootstrap CSS and Dojo. The use of Dojo with Bootstrap is very limited with the exception of Kevin Armstrong who did an incredible job with his Dojo Bootstrap, http://dojobootstrap.com. Our example is a combo box that we are building to replace the standard Bootstrap combo box. In part one, we built a widget that looks like a combo box but did not have a drop down menu associated with it to allow the user to make a select...
Comments