11/22/2024 9:55:45 AM
|
|
slxdeveloper.com Community Forums |
|
|
|
The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
Forum to discuss using & developing the legacy SalesLogix Web Client (For versions 7.0 and earlier). View the code of conduct for posting guidelines.
|
|
|
|
SLX Web - TEAM Ownership
Posted: 31 Mar 06 9:39 AM
|
ru 486 abortion pill where to buy ru 486 abortion pill buy online mooremediaone.com buy abortion pill online fiogf49gjkf0d In SLX Web, I would like to be able to assign a security template that would enable a user to open an account and assign a team ownership profile rather than the default 'everyone' or 'everyone (view only). Can anyone help? |
|
|
|
Re: SLX Web - TEAM Ownership
Posted: 01 Apr 06 3:18 AM
|
fiogf49gjkf0d Clark Security Profiles dont apply to the Saleslogix web client. You would need to use Javascript to control the behavior of dropdown/html controls/CSS. You can have a seperate template for teams which you can use in SalesLogix web using the Overrides functionality available in the SalesLogix Web client. |
|
|
|
Re: SLX Web - TEAM Ownership
Posted: 04 Apr 06 8:49 AM
|
fiogf49gjkf0d What I tend to do in situations like this is to include the result of an action on the page.
The action would returns the options list for a drop down. For example, the following would return a list of all teams with the description as the text and the seccodeid as the value.
--------------------------
Sub Main Dim strOutput as String Dim dbHandle as Long Dim strSQL as String Dim intCount as Integer strSQL = "SELECT SECCODEID, SECCODEDESC FROM SECCODE WHERE SECCODETYPE = 'G' ORDER BY SECCODEDESC" strOutput = "<option value=" & Chr(34) & "/" & Chr(34) & "></option>" & Chr(10) & Chr(13) dbHandle = DBOpenSQL(strSQL, True) DBMoveTo dbHandle, "Last" DBMoveTo dbHandle, "First" For intCount = 1 to DBRecordCount(dbHandle) strOutput = strOutput & "<option value=" & Chr(34) strOutput = strOutput & DBGetValue(dbHandle, "SECCODEID") & Chr(34) & ">" strOutput = strOutput & DBGetValue(dbHandle, "SECCODEDESC") & "</option>" & Chr(10) & Chr(13) DBMoveTo dbHandle, "Next" Next SetActionResult strOutput
End Sub
--------------------------
Then in the HTML, have something similar to:
<select multiple style="width:145px" name="team" size="5"> <#INCLUDE name=getteamlist type=action> </select>
Where getteamlist is the name of the action.
I haven't tested this bit of code, but it should work.
Regards,
Martin |
|
|
|
Re: SLX Web - TEAM Ownership
Posted: 11 Apr 06 11:10 AM
|
adderall weed high adderall weed and alcohol link fiogf49gjkf0d You could also use a combination approach.
First, use the special hard-coded picklist owners - its not really a picklist in SLX that you can manage, but it returns a list of valid owners. This is from the "accinfo" template:
<#PICKLIST list=Owners field=accowner options=Q style="width:198px">
Then you could use JavaScript to remove the Everyone and Everyone (view only) from the drop down list on the page load client side.
Then, if you don't want all users to have the functionality, then you can user overrides (as mentioned above).
Jeff
|
|
|
|
You can
subscribe to receive a daily forum digest in your
user profile. View the site code
of conduct for posting guidelines.
Forum RSS Feed - Subscribe to the forum RSS feed to keep on top of the latest forum activity!
|
|
|
|
|
|
|
|