- 
        1. Re: inplaceInput in extendedDataTable - problem withafrontczak Mar 25, 2009 2:23 PM (in response to afrontczak)Forum don't like polish characters too and converted it into other ones :) 
 unicode for problematic character is: \u0105
- 
        2. Re: inplaceInput in extendedDataTable - problem withsergeysmirnov Mar 25, 2009 2:35 PM (in response to afrontczak)As a matter of fact, this component is developed and contributed to RichFaces by Poland company. So, this case sounds curious for me. 
- 
        3. Re: inplaceInput in extendedDataTable - problem withafrontczak Mar 25, 2009 3:34 PM (in response to afrontczak)as I wrote, inplaceinput without extendeddatatable works fine with all characters, the problem is with inplaceinput inside extendeddatatable 
- 
        4. Re: inplaceInput in extendedDataTable - problem withafrontczak Mar 26, 2009 4:29 AM (in response to afrontczak)does somebody know why putting control into extendedDataTable locks working of keybord event: ALT+A? 
- 
        5. Re: inplaceInput in extendedDataTable - problem withilya_shaikovsky Mar 26, 2009 5:56 AM (in response to afrontczak)Sorry.. As for me after I added polish language Alt-A works the same for simple input and for inplace in table. just nothing appeared after pressed. 
- 
        6. Re: inplaceInput in extendedDataTable - problem withafrontczak Mar 26, 2009 6:04 AM (in response to afrontczak)RIGHT ALT + A - works on inplaceinput demo in richfaces demo site 
- 
        7. Re: inplaceInput in extendedDataTable - problem withilya_shaikovsky Mar 26, 2009 6:07 AM (in response to afrontczak)I have read about right ALT + A. But for me it not works in any way.. And I'm looking why.. just updated the thread in order you to know that we care about it :) 
- 
        8. Re: inplaceInput in extendedDataTable - problem withtkuprevich Mar 26, 2009 10:16 AM (in response to afrontczak)Hi, even if I try to use the TLT+A hotkey here in this forum input fields — nothing happens... In inplace input or any other input field i see the same. May be we don't understand somthing... 
- 
        9. Re: inplaceInput in extendedDataTable - problem withafrontczak Mar 26, 2009 12:18 PM (in response to afrontczak)the problem is connected with selecting datatable rows on Ctrl+A keyborad event when selectionMode<>none; turning selectionMode of the datatable to none enabled using [RIGHT ALT]+A 
- 
        10. Re: inplaceInput in extendedDataTable - problem withafrontczak Mar 27, 2009 5:51 AM (in response to afrontczak)Hi, 
 The problem reason and the solution found :)
 The problem reason:
 The problem event.ctrlKey = true for: [RIGHT ALT] + [NORMAL CHAR]
 Test:
 Lets test settings of flags: event.ctrlKey and event.altKey in following cases:
 - [CTRL] + [NORMAL CHAR] - event.ctrlKey=true; event.altKey=false;
 - [LEFT ALT] + [NORMAL CHAR] - event.ctrlKey=false; event.altKey=true;
 - [RIGHT ALT] + [NORMAL CHAR] - event.ctrlKey=true; event.altKey=true;
 Problem location:
 file: extended-data-table.js
 function: processKeyDown: function(event)
 function part: case 65: case 97: //Ctrl-A
 line nr: 1383
 line contants: if (this.inFocus && event.ctrlKey){
 Solution:
 the line 1383 should be:
 if (this.inFocus && event.ctrlKey && !event.altKey) {
 greetings,
 Aleksander
- 
        11. Re: inplaceInput in extendedDataTable - problem withilya_shaikovsky Mar 27, 2009 6:13 AM (in response to afrontczak)https://jira.jboss.org/jira/browse/RF-6623 
 many thanks for your digging when we had troubles even with reproducing:)
- 
        12. Re: inplaceInput in extendedDataTable - problem withpkawiak Apr 11, 2009 1:24 PM (in response to afrontczak)Hello Aleksaner, I have introduced the fix that you proposed - issue should be now resolved in the latest snapshot, THANKS! 
 Wielkie dzięki!
 
     
     
     
    