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!
|
|
Can I open a dialog in a list view?
Posted: 22 Jul 09 3:00 PM
|
Hi all, Let's say i'm on Contact list view. I'm working on some advanced filtering functionality (on top of the standard OOB filtering). So, what i want to do is have a button on top of the standard filters called "Custom filtering", when the user clicks it I show a Dialog so the user can set the filtering criteria there.
Is this possible using standard SalesLogix functionality (i.e. Dialog Service)?
Thanks- |
|
|
| |
|
Re: Can I open a dialog in a list view?
Posted: 22 Jul 09 3:20 PM
|
Thanks Raul, as always you're there to help us poor developers. So, if I add a button to the filters tasklet and on the onclick i code something like:
if (DialogService != null) {
DialogService.SetSpecs(0, 0, 300, 600, "CustomFilters", "Custom Filters", true); DialogService.ShowDialog();
}
It should work, right? |
|
|
|
Re: Can I open a dialog in a list view?
Posted: 22 Jul 09 3:29 PM
|
And another question, does the dialog need to be a quickform turned into smartpart, or can i just display a custom coded ascx control, i mean one created from scratch instead of from an slx form?
Thanks |
|
|
|
Re: Can I open a dialog in a list view?
Posted: 22 Jul 09 3:33 PM
|
You should be able to use either type.
Starting from a Quickform typically helps to get a framework in place, so I typically start that way and then modfiy it as needed. |
|
|
| |
| |
|