cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
349
Views
0
Helpful
2
Replies

CCMAdmin - Items per Page

roberts
Level 1
Level 1

When searching for devices, etc, the default for result returned on the CCMAdmin pages is "20". Is there a way to change this setting so it always defaults to "50". Can this also be increased?

Thanks

2 Replies 2

mmellet
Level 3
Level 3

I have no idea of changing this limit. However i am interested too in knowing a way out, though :-)

There are two ways to do this:

1) Modify the url that you get when you click search. For example for phone list the url might be something like the following for 20 phones in the list:

http://publisher.yourdomain.com/ccmadmin/phonelist.asp?findBy=name&match=begins&pattern=&submit1=Find&rows=20&wildcards=on&utilityList=

Change the 20 that follows "Find&rows=" to the number you want and press enter. Change it to 100, and you'll get a hundred rows.

2) If you can program ASP, you could consider the other, more tedious and risky way, is to modify the *search.asp pages in :\CiscoWebs\Admin.

DO SO AT YOUR OWN RISK!!! YOU CAN SERIOUSLY TRASH YOUR CALLMANAGER BY INCORRECTLY MODIFYING YOUR ADMIN PAGES!!!!!! INFO GIVEN FOR INSTRUCTIONAL PURPOSES ONLY, YOUR MILEAGE MAY VARY, ETC!!!!

If you look in the .asp, you will see a table such as the following. You could just change the existing or add to the "writeOption" parameters. The number in quotes is what is displayed in the drop down. The next number is the actual number of rows you're requesting.

//

//

//

// <% writeOption("10", 10, maxRows) %>

// <% writeOption("20", 20, maxRows) %>

// <% writeOption("30", 30, maxRows) %>

// <% writeOption("40", 40, maxRows) %>

// <% writeOption("50", 50, maxRows) %>

//

//

//

//

<%= lblShow %>  <%= lblPerPage %><%= (wildcards) ? "checked" : "" %> ><%= lblAllowWildcards %>