Hi Boys and Girls
I have a row edit template on grid. When wanting to tab from 1 field to the next on the RowEditTemplate it seems to be doing the tab's in the grid and removing focus from the RowEditTemplate..
Am i doing something worng here?
Hi,
I don't really know what you mean. The RowEditTemplate is just a control or a dialog with controls on it. There's no way that the Tab key could possibly be handled by the grid - the controls and their TabOrder determines the behavior of the tab key, just like with any other controls on any other dialog.
Hi
I agree fully... but for some reason when i tab on a field in my RowEditTemplate it moves focus to field in the grid. Its causing issues for me as the dialog now is waiting for a response.... Leaving me to close my application via the taskmanager....
Is there something im not setting up?
Hello Burmo,
I am checking about the progress of this issue. Please let me know If you need any further assistance on this.
HI Boris
I will let you know as soon as i get back on the issue... Im still on leave at the moment....
I should get back onto it in the next week or two.....
Thanks....
Hello,
OK, I will get back to you again after two weeks and check the status of this.
It seems that if i tab from 1 field to the next its fine... but as soon as i click in some random field and then start tabbing again, focus is applied to the grid i can see the grid tabbing to each field but the edit template does nothing cant even select ok button? Its difficult for me to attach a sample as im not using c# or vb.net here....
also if you have the template open and minimize the application and carry on with something else and then come back to the application focus is lost on the template????
any ideas on why it could loose focus?
Hello Burmno,
It is very hard for me to guess without any sample here. Are you handling any event like the 'KeyPress' of the control? I can make a sample application for you which is working but I cannot see how it will help in this situation. So please reply to the above question or provide whatever sample you could wrap up.
Thank you for your feedback and for sharing this with us. We believe that the other community members could benefit from such threads.
Please feel free to let me know if a question about our toolset comes up on your mind.
Hi Boris
This issue is now closed. It appears i had 1 of the properties in the grid wrong... I had it set to tab to next cell instead of next control...
Thanks very much for the help on this though... really appreciate it...
Thank you...
I have a main form as as mdi container.... i have dragged the ultratabbmdimanager onto the form... its enabled property is set to true... im creating child forms but nothing displays in as a tab.. instead the child form displays as normal... Is there something im missing here in regards to how the midmanger works? its supposed to do this automatically not?
i create my child forms like this.... in the mdiparent load event
fDialog =
DYNAMIC-NEW "UI.frmChild" ().
fDialog:TopLevel =
FALSE.
fDialog:
Parent = this-object.
fDialog:StartPosition = System.Windows.Forms.FormStartPosition:CenterParent.
fDialog:Show().
.
Okay, I will get back to you in a week or so. Please take your time in creating this sample.
Ok give me some time and ill see what i can do..... leave this tread open for now... let me finish this module that im doing and ill see if i still have this issue once im done and see how i can give you a sample...
I made an inherited control from this ultraRowEditTemplate... with previous and next buttons... i dont know if this helps you...