Daniel Miller
 Posts:44

| | 01/23/2007 1:13 PM |
| | I use Enterprise Forms to create dynamic forms. I have tried to exclude the tab but I am still getting the same results? The function buttons perform a task and then are suppose to reload the page by adding a query string param. But it never refreshes the page. It does on the other perform all other tasks. | | | |
|
|
|
John Mitchell Posts:3249


| | 01/23/2007 1:21 PM |
| Can you give me an example of the Url when you are editing? If so, I can probably suggest a pattern to exclude it.
You might also try this one, which excludes most things in DNN when editing:
pattern="ctl.*?(edit|module)" excludeFrom="All" | | | |
|
Daniel Miller
 Posts:44

| | 01/23/2007 1:24 PM |
| http://www.orcities.org/Training/OregonLocalLeadershipInstituteOLLI/AdministeringContracts/tabid/4382/Default.aspx
I have set to exclude as follows:
< pathpattern="tabid=4382"excludeFrom="All"/> | | | |
|
John Mitchell Posts:3249


| | 01/23/2007 1:43 PM |
| Try this:
pattern="tabid.*?(4382)" excludeFrom="All" | | | |
|
Daniel Miller
 Posts:44

| | 01/23/2007 1:48 PM |
| I have tried it and I still get the same result. This pattern doesn't work for my file manager either. tabid.*?(886|4382) excludeFrom="All" I am trying to do this from the module to be site specific. | | | |
|
Daniel Miller
 Posts:44

| | 01/23/2007 1:54 PM |
| | It works when I do it at the root config file. Why not at the Module config file? | | | |
|
John Mitchell Posts:3249


| | 01/23/2007 1:57 PM |
| Oh, sorry I thought you were changing the global config file.
For admin modules like file manager you can't exclude those paths using the module. In the module, the only thing that gets excluded it the current tab that the module is on.
It also will not work in admin/edit mode because the PageBlaster module does not get loaded when you are editing in admin mode.
If you use: pattern="ctl.*?(edit|module)" excludeFrom="All"
In your global config file (the one in the root) it should handle most if not all of the issues you are having.
I can also show you how to do it in a skin, if you want to apply the excludes only to a specific portal on the admin skin.
| | | |
|
Daniel Miller
 Posts:44

| | 01/23/2007 2:01 PM |
| | So, I can put the module on any page I wish to have a pattern on and it will check that pattern for that page only? It is not global correct? At it is ways good to know something like that how would I change my skins. | | | |
|
Daniel Miller
 Posts:44

| | 01/23/2007 2:48 PM |
| | I tried it at the page level module and it didn't work. | | | |
|
John Mitchell Posts:3249


| | 01/25/2007 1:19 PM |
| I need to find a better way to paste code, this editor eats everything that I put in it.
Here is another try from the Quick Reply
<snapsis><pageblaster><excludepaths><pathpattern="tabid.*?(46|886|4382)"excludefrom="All"/></excludepaths></pageblaster></snapsis> | | | |
|
Daniel Miller
 Posts:44

| | 02/01/2007 10:28 AM |
| | That didn't work nor did using the PageBlaster module on the page I wished to exclude. Is this because I use the same path in the snapsis.config file? Another words does an exclussion path only work once. | | | |
|
John Mitchell Posts:3249


| | 02/01/2007 10:38 AM |
| They are supposed to be cumulative. I'll do some debugging to see why that might not be working directly in the skin.
If you put a module on a page, then the exludePath setting only applies to that page, so if you want to exclude the page all the time then you would use ".*" in the exclude path setting.
| | | |
|
Daniel Miller
 Posts:44

| | 02/01/2007 10:51 AM |
| | That didn't work either. What I did was add the Page Blaster module to a page I previously had in the config file and working fine. Removed the tabid from the config file. Added the .* to the Exclude Path and it didn't work. | | | |
|
Daniel Miller
 Posts:44

| | 03/07/2007 3:59 PM |
| | I still can't get the module page blaster to exclude the page it is on. I have also tried putting it in the skin as suggested with no result. | | | |
|
John Mitchell Posts:3249


| | 03/07/2007 4:20 PM |
| If you can send me an e-mail with login information I might be able to help with the configuration. I'm also working on making the exclusions directly in the skin easier to implement.
Please reply to the post notification directly, or click on my user name to send me an e-mail. | | | |
|