VISUI Logi Info Ninja
1st Forum Post
10th Forum Post
VISUI can make Logi Info do things that even Logi Info didn't think it could :-) info@visuidesign.com John Sweazen
- Total activity 236
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 14
- Subscriptions 82
Activity overview
Latest activity by VISUI-
VISUI commented,
It is difficult to understand the process from just the screenshot, but typically you can run the process with debug turned on then within Lovi Studio provide any necessary parameters then selectin...
-
VISUI commented,
The metadata file is an XML document. You can programmatically create the document dynamically from your database server instead of relying on Logi’s metadata builder to be run nightly.
-
VISUI commented,
You cannot share with yourself. So if you are logged in with your username, your username is automatically filtered from the sharing list
-
VISUI commented,
The sharing list is configured in the goCustomizations.goBookmarkSharingUserList definition sharedDataLayer shared element.My guess is that you will need a Connection.LDAP in your _Settings.lgx and...
-
VISUI commented,
I typically don't use the Action.Process element, but instead grab the respective javascript to submit a process or use ajax to submit the process asynchronously without leaving the current page.In...
-
VISUI commented,
And finally adding an "invalid" css class to inputs that contain nonnumeric values. function validateCheckNumber(e) { if ($.isNumeric($('#'+e).val())) { $('#'+e).removeClass('invalid'); } ...
-
VISUI commented,
Actually with the final method you don't even need to iterate over each element. you can just apply it globally to that css class or other selector: function validateCheckNumber(e) { console....
-
VISUI commented,
The easiest way to pass the id of an input into a function is to use jQuery. validateCheckNumber($(this).attr('id')); This will pass the id of the input calling the function function validateCheckN...
-
VISUI commented,
It has been awhile since I have used NT Auth. The other things that can affect security are Roles and Rights (which I believe NTAuth transposes the user’s Windows Security Groups and the actual fil...
-
VISUI commented,
The most important configuration in order to use NT Authentication actually occurs in IIS Manager. Each application to use NT Authentication must be configured to disable Anonymous Authentication...