Mc. Alvin Bautista

Greenhorn
+ Follow
since Jul 17, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Mc. Alvin Bautista

Thanks Tim, so it means, it is impossible to create the Directory Chooser on the web. Therefore, there is no other option but to type the folder path in the textfield. Am i right? Because the user can't open the Directory Chooser Dialog Box. They have to type the whole folder path.
17 years ago
JSF
Hello,

Is there anyone here who knows how to create a Directory Chooser in JSF or on jsp page?
It is a dialog box where you can select a directory and it will display
on the textfield the selected path.

Example path - > c:\Program Files\Adobe

I searched the internet but I haven't found anything about this Directory Chooser on JSF. There is a JDialogChooser but I think it is not applicable for my application because it is just for Java Application and not for Web Application. Is anyone here who knows how to implement this thing on web? Thanks.
17 years ago
JSF
Hello guys,

Do you have any idea on how to create a dropdown box in jsf with default value? For example I have a list of values:

value[0] = "default"
value[1] = "ABC"
value[2] = "DEF"

Then after setting the list of values, I will populate the dropdown box. What if I have a default value of "DEF" in my dropdown box, how could I display it to be the default value on the dropdown box. Can anyone help me?
Thanks in advance.
17 years ago
JSF
Anyone, please help....
17 years ago
JSF
Hello guys, I have a problem in displaying my <t:dataScroller> in the page. Do you have any idea, how to display the <t:dataScroller> on the upper right of the page, then below it is the <h:dataTable> where it gets the source for <t:dataScroller>. Pls. help.

Thanks in advance.
17 years ago
JSF
I got it now. Thanks 4 the idea of Keith. I use the HashMap object to get the Collection of Collections. I got the specific Collections through the use of the key mapped in that Collection. Thanks to you guys....
17 years ago
By the way, the Number class here is created on my own. I declared this as Number(int begin, int end). Let's say that the begin variable here is a key for a specific record. It means that it is a range of records from a given "begin key" to the given "end key". That's why I made a collection on this records. What I am trying to do is I want to get the specific range of records on the collection of ranges of records. I realy don't have much idea on how to implement these. Can you please help me on this?

By the way thanks for the responses.
17 years ago
What if I have this kind of codes?

Collection number = new Arraylist();
Collection ranges = new ArrayList();

number.add(new Number(0,100));
number.add(new Number(101,200));// I want to get this specific collection
ranges.add(number);


How could I get the specific Collection on the Collection ranges? Do you have any idea with this?
17 years ago
May I know how to use a hashmap? For example I have a collection of objects then I use a hashmap on that collections? Am I ryt?
17 years ago
I have a problem of accessing a specific collection which is included inside a collection object I created. For example, I have a collection of numbers ranges 0-99,100-199,200-299,...This 0-99 is equal to one collection, So therefore I have created a Collection of Collections of numbers. What I want is, I want to get the specific collection on that Collection object. Anyone have any idea on this. Please help...
17 years ago