I am using 11.2 v2125 webdatagrid with a dropdown provider. It works throughout my site except on 1 page I have. In development it works everywhere but on production there is one page that when clicking on the cell the dropdown provider will not display. It acts as though there is no dropdown provider and displays the text editor.
This page has 2 grids; one with a dropdown provider that works and another with a dropdown provider that won't show. It does not work in Chrome, IE, Safari, or Firefox.
I finally traced it down to switching IE9 to compatibility mode will display the dropdown provider. Any clue as to what is going on here? The dropdown provider is wired just like all the other ones that I am using and have been using for months without a problem.
Steve
Good catch Jon. My bad. I usually copy & paste the ids to make sure I don't do something stupid like that.
Thanks,
Hello Steve,
I have looked over your code extensively and after much testing, realized the above code is broken due to a case sensitive misstype. If you look at the following items of the second grid:
<ig:DropDownProvider ID="DropDownProvider20">
....
<ig:DropDownProvider ID="DropDownProvider1">
And then take a look at the binding:
<ig:RowAddingColumnSetting ColumnKey="Field_Service_Line_Number" EditorID="DropdownProvider20" /><ig:RowAddingColumnSetting ColumnKey="Description" EditorID="DropdownProvider1" />
The EditorID's differ by a lower/upper case D on the word down. If you correct the case to match in both places, the issue will be resolved.
Sincerely, Jon Infragistics, Inc. <http://ko.infragistics.com/support/get-help.aspx>
If you look at my next post to the thread I realized it does occur in production and in development. The example I provided exposes the bug.
Thank you for the update.
I see that the issue occurs in production and not in development. It is possible that the application may be affected by an upgrade or changes in the production server. I also suggest revisiting the application's deployment.
I hope this helps.
Please let us know if you have any questions.
Hi Vivian,
The example that I provided in the begining of this thread duplicates the issue.