| Author |
Message |
|
|
|
I have witnessed similar issues. I would also like this information.
|
 |
|
|
I have a panel with a context menu popup, inside the panel is also text inputs and text areas. I do not want to context menu to show up if the user right clicks inside the inputs. I want the standard browser context menu to show up when right clicked inside there.
The reason for this is because I want the use to be able to use the built in browser spell check but it is not possible if the context menu is replaced.
Thanks in advance
|
 |
|
|
First I just want to say I love Icefaces and have used it primarily for almost 3 years.
With that said I am beginning to be frustrated with the lack of expansion of the component suite...
Since I have been using Icefaces I don't think there has been a single addition to the icefaces components library. Many of the other JSF frameworks (Primefaces, Richfaces, ZK) have a significantly more diverse and rich suite of components.
Where are components like captcha, editable combo box, file Chooser, wizard, rating, client side validation, Inline edit, color picker, dock, etc, etc.
I have not yet begun to use icefaces 2 so forgive me if it offers more components I do not know about. If so I hope a showcase is available soon.
So whats the story on new components??? Are plans being made?
I am just saying I would like to have another helping of components please! ;-)
|
 |
|
|
I found a way to do this if anyone else is interested
Autocompleter.Finder.find('idofselectInputText').onKeyPress(Event.KEY_DOWN);
|
 |
|
|
I want to have the autocomplete list for a selectInputText display when a html button is pressed.
Is this possible right?
|
 |
|
|
We are targeting GS 2.1.1 b31g
We will just be using single node at this time
|
 |
|
|
Excellent thank you.
I haven't been able to find any documents to get EPS working on glassfish? Any docs you can point me to?
Thanks again
|
 |
|
|
if you are not using clustering or load balancing is there any benefit to using the enterprise push server over the standard push server?
|
 |
|
|
here is a simple javascript I came up with to delay partial submit until there is some idle amount of time on input.
var timeout = 400; //milliseconds to wait for no activity
var countEvents = 0;
function delayedRequest(form,field,event){
countEvents++;
setTimeout(function() {
countEvents--;
if(countEvents==0){
iceSubmitPartial(form,field,event);
}
},timeout);
}
then just attach to your input field like so
onkeyup="delayedRequest(form,this,event);"
|
 |
|
|
|
Is there anyway to delay the submit if more characters are typed before some short period like 1/2 a second or something. like what is done with the selectInputText component?
|
 |
|
|
Yeah I need this as well.
Any plans for a file-chooser in the future?
|
 |
|
|
|
I would really like to do this as well. No Ideas?
|
 |
|
|
|
This happens on FF and IE
|
 |
|
|
I have an issue with 1.8.2 where the user will dismiss a modal popup but the background remains greyed out and you can't do anything except refresh the page.
Any ideas about this issue?
|
 |
|
|
|
Is it possible to hookup a panelConfirmation to an ice:menuItem? This is where we put a lot of controls.
|
 |
|
|