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!
|
|
Manipulating with only selected records in list view
Posted: 06 Oct 09 2:34 AM
|
Hi All. I'd like to manipulate with only selected records in list view (like Add Selected Members to ExistingGroup in Contacts popup menu) I have ideas how to work with whole group (using Application.BasicFunctions.GetGroupIDs for ad-hoc groups and Application.MainViews.ActiveView.CurrentGroupSQL for dynamic groups), but how I can work with only selected records? Saleslogix version 7.2 |
|
|
|
Re: Manipulating with only selected records in list view
Posted: 07 Oct 09 4:10 PM
|
have the user create an ad hoc group of their selection and then process it....
unfortunately this is one of those areas that isn't conveniently open to developers.
Usually what we do is put the group into a Form and a Data Grid.....let them select from that grid which you CAN program against. |
|
|
|
Re: Manipulating with only selected records in list view
Posted: 14 Oct 09 4:02 AM
|
RJ Samp, thank you for answer. But finally i found the way to do it:
dim i dim FullIDs ' string which contains final list of IDs for i=0 to application.MainViews.ActiveView.GroupsPane.Selection.count - 1 FullIDs = FullIDs & "','" & application.MainViews.ActiveView.GroupsPane.Selection.item(i) Next |
|
|
| |
| |
| |
| |
| |
| |
| |
|
Re: Manipulating with only selected records in list view
Posted: 14 Oct 09 9:57 AM
|
Cool, I should get a new version of DevLogix....
Anyway to manipulate the popup menus? I.E. if they haven't selected any list items, no fair showing the menu item to get the list of selected AccountID's? |
|
|
|
Re: Manipulating with only selected records in list view
Posted: 15 Oct 09 12:02 AM
|
New version of Devlogix contains mainly info about 7.5 Web Client. I have 3rd edition. to manipulate popup menus we can use application.mainviews.activeview.popupmenu.menuitems.items(0).enabled property, I think. Like in built-in popup menu items. |
|
|
| |
|