sigmason
Posts: 6
|
| Posted: 08/21/2010, 9:53 PM |
|
I have about 34,000 records in a database and I want to give the user the chance to move quickly if their searches produce a large number results. I'm using basically the grid and record configuration.
I was able to figure out how to increase the number of pages one can select from the navigator list on the grid table, but even at 1024x768 spacing between the page number links is way too close. I have that currently set to 25 pages and despite having plenty of room on that line of the table it is crammed into an apparently fixed space.
How do I expand that navigator control within that row of the table?
Additionally, is there a 'Design' tab function to change the alignment of it from say center to left?
Thanks in advance...
|
 |
 |
mamboBROWN
Posts: 1713
|
| Posted: 08/24/2010, 8:36 PM |
|
sigmason,
Maybe this link might help you with the Navigator control: http://docs.codecharge.com/studio40/html/index.html?htt...r/Overview.html
As far as the alignment of the navigator control you should be able to click/highlight it and use the formatting toolbar to either left justify, center or right justify it.
|
 |
 |
sigmason
Posts: 6
|
| Posted: 08/24/2010, 8:50 PM |
|
Thanks, but while the link shows the dialog that allows you to increase the displayed pages, it doesn't detail how to expand the navigator to make the space between the page numbers larger.
For example with 25 pages it looks sort of like this:
12345678910111223141516171819202122232425
I'd like something like this:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
You're correct about the justification controls, at first I resorted to DIV tags in HTML and then I noticed you could apply these buttons to objects in the design window as well.
I only started to actually use my license of CCS within the last week (though I've had it for years), thanks for the help.
|
 |
 |
mamboBROWN
Posts: 1713
|
| Posted: 08/25/2010, 4:37 PM |
|
sigmason,
Why don't you add HTML code for space & n b s p ; (without the spaces) to the action navigational code in the html page and see if that does the trick.
|
 |
 |
roeya
Posts: 181
|
| Posted: 08/25/2010, 9:09 PM |
|
Quote sigmason:
Thanks, but while the link shows the dialog that allows you to increase the displayed pages, it doesn't detail how to expand the navigator to make the space between the page numbers larger.
For example with 25 pages it looks sort of like this:
12345678910111223141516171819202122232425
I'd like something like this:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
You're correct about the justification controls, at first I resorted to DIV tags in HTML and then I noticed you could apply these buttons to objects in the design window as well.
I only started to actually use my license of CCS within the last week (though I've had it for years), thanks for the help.
One of the options in CCS is to use manual (see it in the link above in the picture under the name manual.) this create a textbox with button called goto that let you type page number and goto it directly - we extended it using javascript to be a listbox with all the page numbers, where you just need to select page and it loads the requested page - this solved the same problem
_________________
http://www.infoneto.com/ |
 |
 |
|