How do I change the tab order of fields in forms - CRM 2011?
-
Friday, 4 May 2012 3:43 PM
Hello Everyone
Is there a way to change the tab order of the fields without writing code?
Thanks
All Replies
-
Friday, 4 May 2012 5:58 PMModeratorNo, you need to write code for this my friend
Mahain : Check My Blog
Follow me on Twitter
Make sure to "Vote as Helpful" and "Mark As Answer",if you get answer of your question. -
Friday, 4 May 2012 7:28 PM
Hi Mahender
Thanks for the reply.
Do you have code sample which I can use?
Thanks
-
Friday, 4 May 2012 8:29 PM
Here is the code
crmForm.all.Field1.tabIndex = 1000; crmForm.all.Field3.tabIndex = 1010; crmForm.all.Field2.tabIndex = 1020; crmForm.all.Field4.tabIndex = 1030;
For more help please check the following link
http://relaxtechnic.blogspot.com/2011/05/rearrange-tab-order-oin-crm-form-from.html
http://social.microsoft.com/Forums/en/crmdevelopment/thread/d440d25a-e4e7-42af-b504-4f004ba68fa4
I hope this helps. If my response answered your question, please mark the response as an answer and also vote as helpful.
Mubasher Sharif
Check out my about.me profile!
http://mubashersharif.blogspot.com
Linked-In Profile
Follow me on Twitter!
- Edited by MubasherSharif Friday, 4 May 2012 8:30 PM
- Proposed As Answer by Mike M. LinMicrosoft Employee Thursday, 10 May 2012 10:18 PM
- Unproposed As Answer by Mike M. LinMicrosoft Employee Thursday, 10 May 2012 10:18 PM
-
Saturday, 5 May 2012 9:45 AM
If you mean you want to tab horizontally instead of vertically you can add a section for each row of fields on your form (CRM tabs through an entire section before moving into the next). If you simply remove the heading from all but the first section, from the front end it will look exactly the same, however you will tab across the page instead of down.
Hope that helps!
-Paul
- Proposed As Answer by Mike M. LinMicrosoft Employee Thursday, 10 May 2012 10:20 PM